wok view zfs-fuse/receipt @ 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
children 480e482052b5
line source
1 # SliTaz package receipt.
3 PACKAGE="zfs-fuse"
4 VERSION="0.7.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="ZFS file system from Sun."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 WEB_SITE="http://zfs-fuse.net"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WGET_URL="$WEB_SITE/releases/$VERSION/$TARBALL"
12 DEPENDS="fuse libaio libcrypto"
13 BUILD_DEPENDS="fuse-dev scons libaio-dev attr-dev zlib-dev acl-dev openssl-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 mkdir -p $DESTDIR/usr
19 cd $src/src
20 scons PREFIX=/usr &&
21 scons install_dir=$DESTDIR/usr/sbin \
22 cfg_dir=$DESTDIR/etc \
23 man_dirr=$DESTDIR/usr/man install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 cp -a $install/* $fs
30 }