wok-next view expat/receipt @ rev 19572
Up: gperf, expat, inetutils (added), perl-xml-parser, intltool, autoconf, automake.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Fri Dec 23 15:07:51 2016 +0200 (2016-12-23) |
parents | c9e270dd464f |
children | 9278a60d6895 |
line source
1 # SliTaz package receipt.
3 PACKAGE="expat"
4 VERSION="2.2.0"
5 CATEGORY="x-window"
6 SHORT_DESC="XML parsing C library"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="http://expat.sourceforge.net/"
10 HOST_ARCH="i486 arm"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
13 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 ./configure \
19 --disable-static \
20 $CONFIGURE_ARGS &&
21 make && make DESTDIR=$install install
23 docdir="$install/usr/share/doc/expat-$VERSION"
24 mkdir -p $docdir; cp doc/* $docdir; rm $docdir/*.1
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 cook_copy_files xmlwf *.so*
31 }