wok rev 13499
Add zfs-fuse
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Oct 13 11:15:07 2012 +0200 (2012-10-13) |
parents | d65b3051e86c |
children | 480e482052b5 |
files | libaio/receipt zfs-fuse/receipt |
line diff
1.1 --- a/libaio/receipt Sat Oct 13 10:52:34 2012 +0200 1.2 +++ b/libaio/receipt Sat Oct 13 11:15:07 2012 +0200 1.3 @@ -2,7 +2,7 @@ 1.4 1.5 PACKAGE="libaio" 1.6 VERSION="0.3.92" 1.7 -CATEGORY="development" 1.8 +CATEGORY="misc" 1.9 SHORT_DESC="Linux-native asynchronous I/O access library." 1.10 MAINTAINER="pascal.bellard@slitaz.org" 1.11 TARBALL="$PACKAGE-$VERSION.tar.gz"
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/zfs-fuse/receipt Sat Oct 13 11:15:07 2012 +0200 2.3 @@ -0,0 +1,30 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="zfs-fuse" 2.7 +VERSION="0.7.0" 2.8 +CATEGORY="system-tools" 2.9 +SHORT_DESC="ZFS file system from Sun." 2.10 +MAINTAINER="pascal.bellard@slitaz.org" 2.11 +WEB_SITE="http://zfs-fuse.net" 2.12 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 2.13 +WGET_URL="$WEB_SITE/releases/$VERSION/$TARBALL" 2.14 + 2.15 +DEPENDS="fuse libaio libcrypto" 2.16 +BUILD_DEPENDS="fuse-dev scons libaio-dev attr-dev zlib-dev acl-dev openssl-dev" 2.17 + 2.18 +# Rules to configure and make the package. 2.19 +compile_rules() 2.20 +{ 2.21 + mkdir -p $DESTDIR/usr 2.22 + cd $src/src 2.23 + scons PREFIX=/usr && 2.24 + scons install_dir=$DESTDIR/usr/sbin \ 2.25 + cfg_dir=$DESTDIR/etc \ 2.26 + man_dirr=$DESTDIR/usr/man install 2.27 +} 2.28 + 2.29 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.30 +genpkg_rules() 2.31 +{ 2.32 + cp -a $install/* $fs 2.33 +}