wok-next view expat/receipt @ rev 19662

Remove tazchroot (not used for yearsand unusable)
author Christophe Lincoln <pankso@slitaz.org>
date Thu Mar 16 18:37:27 2017 +0100 (2017-03-16)
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 }