wok annotate neon/receipt @ rev 1228

All squirrelmail-smallcal
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Aug 10 11:50:32 2008 +0000 (2008-08-10)
parents
children 03a799424aaa
rev   line source
erjo@1217 1 # SliTaz package receipt.
erjo@1217 2
erjo@1217 3 PACKAGE="neon"
erjo@1217 4 VERSION="0.28.2"
erjo@1217 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=""
erjo@1217 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
erjo@1217 10 WEB_SITE="http://www.webdav.org/neon"
erjo@1217 11 WGET_URL="http://www.webdav.org/neon/$TARBALL"
erjo@1217 12
erjo@1217 13 # Rules to configure and make the package.
erjo@1217 14 compile_rules()
erjo@1217 15 {
erjo@1217 16 cd $src
erjo@1217 17 ./configure --prefix=/usr --infodir=/usr/share/info \
erjo@1217 18 --mandir=/usr/share/man $CONFIGURE_ARGS
erjo@1217 19 make
erjo@1217 20 make DESTDIR=$PWD/_pkg install
erjo@1217 21 }
erjo@1217 22
erjo@1217 23 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@1217 24 genpkg_rules()
erjo@1217 25 {
erjo@1217 26 mkdir -p $fs/usr
erjo@1217 27 cp -a $_pkg/usr/lib $fs/usr
erjo@1217 28 cp -a $_pkg/usr/bin $fs/usr
erjo@1217 29 cp -a $_pkg/usr/include $fs/usr
erjo@1217 30 }
erjo@1217 31