wok annotate libxml2/receipt @ rev 10228
Up: libtorrent-rasterbar to 0.15.6.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Sat May 21 00:20:08 2011 +0000 (2011-05-21) |
parents | bc1599ffa221 |
children | 4c7e8355c655 |
rev | line source |
---|---|
pankso@24 | 1 # SliTaz package receipt. |
pankso@24 | 2 |
pankso@24 | 3 PACKAGE="libxml2" |
slaxemulator@7345 | 4 VERSION="2.7.8" |
pankso@211 | 5 CATEGORY="system-tools" |
pankso@24 | 6 SHORT_DESC="Libxml2 is the XML C parser and toolkit." |
pankso@24 | 7 MAINTAINER="pankso@slitaz.org" |
pankso@24 | 8 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pankso@24 | 9 WEB_SITE="http://xmlsoft.org/" |
pankso@24 | 10 WGET_URL="ftp://xmlsoft.org/libxml2/$TARBALL" |
pascal@2475 | 11 DEPENDS="zlib" |
pankso@24 | 12 |
pankso@24 | 13 # Rules to configure and make the package. |
pankso@24 | 14 # |
pankso@24 | 15 # Note: libxml2 can be build using option --with-minimum |
pankso@4828 | 16 # and binaries are splited into libxml2-tools |
pankso@24 | 17 compile_rules() |
pankso@24 | 18 { |
pankso@24 | 19 cd $src |
slaxemulator@9700 | 20 patch -Np1 -i $stuff/libxml2-fix.patch |
pankso@24 | 21 ./configure \ |
pankso@670 | 22 --prefix=/usr \ |
pankso@670 | 23 --infodir=/usr/share/info \ |
pankso@670 | 24 --mandir=/usr/share/man \ |
pascal@2504 | 25 --with-html-dir=/usr/share/doc \ |
pascal@2475 | 26 $CONFIGURE_ARGS && |
pascal@2475 | 27 make && |
pankso@24 | 28 make DESTDIR=$PWD/_pkg install |
pankso@24 | 29 } |
pankso@24 | 30 |
pankso@24 | 31 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@24 | 32 genpkg_rules() |
pankso@24 | 33 { |
pankso@24 | 34 mkdir -p $fs/usr/lib |
pankso@24 | 35 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
pankso@24 | 36 } |