wok-current annotate neon/receipt @ rev 1514
Update some BUILD_DEPENDS
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Oct 06 19:20:18 2008 +0000 (2008-10-06) |
parents | 03a799424aaa |
children | a906e8e0aac8 |
rev | line source |
---|---|
erjo@1217 | 1 # SliTaz package receipt. |
erjo@1217 | 2 |
erjo@1217 | 3 PACKAGE="neon" |
erjo@1217 | 4 VERSION="0.28.2" |
pascal@1423 | 5 CATEGORY="development" |
erjo@1217 | 6 SHORT_DESC="Neon HTTP and WebDAV client library" |
erjo@1217 | 7 MAINTAINER="lehswe@gmail.com" |
erjo@1217 | 8 DEPENDS="" |
pascal@1465 | 9 BUILD_DEPENDS="zlib-dev libxml2-dev expat-dev" |
erjo@1217 | 10 TARBALL="$PACKAGE-$VERSION.tar.gz" |
erjo@1217 | 11 WEB_SITE="http://www.webdav.org/neon" |
erjo@1217 | 12 WGET_URL="http://www.webdav.org/neon/$TARBALL" |
erjo@1217 | 13 |
erjo@1217 | 14 # Rules to configure and make the package. |
erjo@1217 | 15 compile_rules() |
erjo@1217 | 16 { |
erjo@1217 | 17 cd $src |
erjo@1217 | 18 ./configure --prefix=/usr --infodir=/usr/share/info \ |
pascal@1465 | 19 --mandir=/usr/share/man $CONFIGURE_ARGS && |
pascal@1465 | 20 make && |
erjo@1217 | 21 make DESTDIR=$PWD/_pkg install |
erjo@1217 | 22 } |
erjo@1217 | 23 |
erjo@1217 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@1217 | 25 genpkg_rules() |
erjo@1217 | 26 { |
erjo@1217 | 27 mkdir -p $fs/usr |
erjo@1217 | 28 cp -a $_pkg/usr/lib $fs/usr |
erjo@1217 | 29 cp -a $_pkg/usr/bin $fs/usr |
erjo@1217 | 30 cp -a $_pkg/usr/include $fs/usr |
erjo@1217 | 31 } |
erjo@1217 | 32 |