# HG changeset patch # User Pascal Bellard # Date 1368877509 -7200 # Node ID 54fd732dc68424716fe6c745db47e2ba386bd4b9 # Parent 9b6bb1d6033f739613f06583fae8bce28fb05111 Add avfs diff -r 9b6bb1d6033f -r 54fd732dc684 avfs-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/avfs-dev/receipt Sat May 18 13:45:09 2013 +0200 @@ -0,0 +1,19 @@ +# SliTaz package receipt. + +PACKAGE="avfs-dev" +VERSION="1.0.1" +CATEGORY="development" +SHORT_DESC="A virtual Filesystem implemented with FUSE, development files." +MAINTAINER="pascal.bellard@slitaz.org" +WEB_SITE="http://avfs.sourceforge.net/" +WANTED="avfs" + +DEPENDS="avfs" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/*a $fs/usr/lib +} diff -r 9b6bb1d6033f -r 54fd732dc684 avfs/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/avfs/receipt Sat May 18 13:45:09 2013 +0200 @@ -0,0 +1,35 @@ +# SliTaz package receipt. + +PACKAGE="avfs" +VERSION="1.0.1" +CATEGORY="system-tools" +SHORT_DESC="A virtual Filesystem implemented with FUSE." +MAINTAINER="pascal.bellard@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://avfs.sourceforge.net/" +WGET_URL="$SF_MIRROR/avf/$PACKAGE/$VERSION/$TARBALL" + +DEPENDS="fuse liblzma" +BUILD_DEPENDS="fuse-dev liblzma-dev" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + --enable-fuse \ + $CONFIGURE_ARGS && + make && + make DESTDIR=$DESTDIR 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/sbin $fs/usr + cp -a $install/usr/lib/avfs $fs/usr/lib + cp -a $install/usr/lib/*.so* $fs/usr/lib +} diff -r 9b6bb1d6033f -r 54fd732dc684 gnutls-dev/receipt --- a/gnutls-dev/receipt Sat May 18 09:08:05 2013 +0200 +++ b/gnutls-dev/receipt Sat May 18 13:45:09 2013 +0200 @@ -5,16 +5,17 @@ CATEGORY="development" SHORT_DESC="GNU Transport Layer Security Library headers" MAINTAINER="erjo@slitaz.org" -DEPENDS="gnutls libtasn1-dev libgcrypt-dev libgpg-error-dev p11-kit-dev" WANTED="gnutls" WEB_SITE="http://www.gnu.org/software/gnutls/" +DEPENDS="gnutls libtasn1-dev libgcrypt-dev libgpg-error-dev p11-kit-dev zlib-dev" + # 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 - cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib - cp -a $_pkg/usr/include $fs/usr + cp -a $install/usr/lib/*.*a $fs/usr/lib + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cp -a $install/usr/include $fs/usr }