wok rev 14529

Add avfs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 18 13:45:09 2013 +0200 (2013-05-18)
parents 9b6bb1d6033f
children e7b91865d675
files avfs-dev/receipt avfs/receipt gnutls-dev/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/avfs-dev/receipt	Sat May 18 13:45:09 2013 +0200
     1.3 @@ -0,0 +1,19 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="avfs-dev"
     1.7 +VERSION="1.0.1"
     1.8 +CATEGORY="development"
     1.9 +SHORT_DESC="A virtual Filesystem implemented with FUSE, development files."
    1.10 +MAINTAINER="pascal.bellard@slitaz.org"
    1.11 +WEB_SITE="http://avfs.sourceforge.net/"
    1.12 +WANTED="avfs"
    1.13 +
    1.14 +DEPENDS="avfs"
    1.15 +
    1.16 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.17 +genpkg_rules()
    1.18 +{
    1.19 +	mkdir -p $fs/usr/lib
    1.20 +	cp -a $install/usr/include $fs/usr
    1.21 +	cp -a $install/usr/lib/*a $fs/usr/lib
    1.22 +}
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/avfs/receipt	Sat May 18 13:45:09 2013 +0200
     2.3 @@ -0,0 +1,35 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="avfs"
     2.7 +VERSION="1.0.1"
     2.8 +CATEGORY="system-tools"
     2.9 +SHORT_DESC="A virtual Filesystem implemented with FUSE."
    2.10 +MAINTAINER="pascal.bellard@slitaz.org"
    2.11 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    2.12 +WEB_SITE="http://avfs.sourceforge.net/"
    2.13 +WGET_URL="$SF_MIRROR/avf/$PACKAGE/$VERSION/$TARBALL"
    2.14 +
    2.15 +DEPENDS="fuse liblzma"
    2.16 +BUILD_DEPENDS="fuse-dev liblzma-dev"
    2.17 +
    2.18 +# Rules to configure and make the package.
    2.19 +compile_rules()
    2.20 +{
    2.21 +	cd $src
    2.22 +	./configure \
    2.23 +		--prefix=/usr \
    2.24 +		--enable-fuse \
    2.25 +		$CONFIGURE_ARGS &&
    2.26 +	make &&
    2.27 +	make DESTDIR=$DESTDIR install
    2.28 +}
    2.29 +
    2.30 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.31 +genpkg_rules()
    2.32 +{
    2.33 +	mkdir -p $fs/usr/lib
    2.34 +	cp -a $install/usr/bin $fs/usr
    2.35 +	cp -a $install/usr/sbin $fs/usr
    2.36 +	cp -a $install/usr/lib/avfs $fs/usr/lib
    2.37 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    2.38 +}
     3.1 --- a/gnutls-dev/receipt	Sat May 18 09:08:05 2013 +0200
     3.2 +++ b/gnutls-dev/receipt	Sat May 18 13:45:09 2013 +0200
     3.3 @@ -5,16 +5,17 @@
     3.4  CATEGORY="development"
     3.5  SHORT_DESC="GNU Transport Layer Security Library headers"
     3.6  MAINTAINER="erjo@slitaz.org"
     3.7 -DEPENDS="gnutls libtasn1-dev libgcrypt-dev libgpg-error-dev p11-kit-dev"
     3.8  WANTED="gnutls"
     3.9  WEB_SITE="http://www.gnu.org/software/gnutls/"
    3.10  
    3.11 +DEPENDS="gnutls libtasn1-dev libgcrypt-dev libgpg-error-dev p11-kit-dev zlib-dev"
    3.12 +
    3.13  # Rules to gen a SliTaz package suitable for Tazpkg.
    3.14  genpkg_rules()
    3.15  {
    3.16  	mkdir -p $fs/usr/lib
    3.17 -	cp -a $_pkg/usr/lib/*.*a $fs/usr/lib
    3.18 -	cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib
    3.19 -	cp -a $_pkg/usr/include $fs/usr
    3.20 +	cp -a $install/usr/lib/*.*a $fs/usr/lib
    3.21 +	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    3.22 +	cp -a $install/usr/include $fs/usr
    3.23  }
    3.24