wok-undigest annotate afpfs-ng/receipt @ rev 173

Removed hydrogen and depends. There in wok now.
author Christopher Rogers <slaxemulator@gmail.com>
date Tue Oct 19 13:59:15 2010 +0000 (2010-10-19)
parents
children 8fc6feb8d2c2
rev   line source
pascal@82 1 # SliTaz package receipt.
pascal@82 2
pascal@82 3 PACKAGE="afpfs-ng"
pascal@82 4 VERSION="0.8.1"
pascal@82 5 CATEGORY="system-tools"
pascal@82 6 SHORT_DESC="The free afpfs driver."
pascal@82 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@82 8 DEPENDS="fuse libgcrypt readline gmp"
pascal@82 9 BUILD_DEPENDS="libgcrypt-dev readline-dev gmp-dev fuse-dev gmp"
pascal@82 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@82 11 WEB_SITE="http://alexthepuffin.googlepages.com/"
pascal@82 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pascal@82 13
pascal@82 14 # Rules to configure and make the package.
pascal@82 15 compile_rules()
pascal@82 16 {
pascal@82 17 cd $src
pascal@82 18 ./configure --prefix=/usr \
pascal@82 19 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@82 20 make &&
pascal@82 21 make DESTDIR=$PWD/_pkg install
pascal@82 22 }
pascal@82 23
pascal@82 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@82 25 genpkg_rules()
pascal@82 26 {
pascal@82 27 mkdir -p $fs/usr/lib
pascal@82 28 cp -a $_pkg/usr/bin $fs/usr
pascal@82 29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pascal@82 30 # Package all afpfs-ng pkgs
pascal@82 31 for i in $(cd $WOK; ls -d afpfs-ng-*)
pascal@82 32 do
pascal@82 33 tazwok genpkg $i
pascal@82 34 done
pascal@82 35 }