# HG changeset patch # User Pascal Bellard # Date 1320335972 -3600 # Node ID d9c2cb21341a2fc06727540cc6f2129b652e8cf2 # Parent 7ad949dccd95e496163821c86e5682a8ae973bd0 Add from wok-undigest: afpfs-ng diff -r 7ad949dccd95 -r d9c2cb21341a afpfs-ng-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/afpfs-ng-dev/receipt Thu Nov 03 16:59:32 2011 +0100 @@ -0,0 +1,16 @@ +# SliTaz package receipt. + +PACKAGE="afpfs-ng-dev" +VERSION="0.8.1" +CATEGORY="development" +SHORT_DESC="The free afpfs driver development files" +MAINTAINER="pascal.bellard@slitaz.org" +WEB_SITE="http://alexthepuffin.googlepages.com/" +WANTED="afpfs-ng" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/lib/*a $fs/usr/lib +} diff -r 7ad949dccd95 -r d9c2cb21341a afpfs-ng/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/afpfs-ng/receipt Thu Nov 03 16:59:32 2011 +0100 @@ -0,0 +1,28 @@ +# SliTaz package receipt. + +PACKAGE="afpfs-ng" +VERSION="0.8.1" +CATEGORY="system-tools" +SHORT_DESC="The free afpfs driver." +MAINTAINER="pascal.bellard@slitaz.org" +DEPENDS="fuse libgcrypt readline gmp" +BUILD_DEPENDS="libgcrypt-dev readline-dev gmp-dev fuse-dev gmp" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://alexthepuffin.googlepages.com/" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure $CONFIGURE_ARGS && + make && make install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/lib/*.so* $fs/usr/lib +}