wok view zfs-fuse/receipt @ rev 20577

Up btrfs-progs (4.19.1)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Dec 13 18:01:50 2018 +0100 (2018-12-13)
parents 24777abfc406
children 7bc5e65f1caa
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 LICENSE="CDDL"
9 WEB_SITE="http://zfs-fuse.net"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 ARCHIVE="https://web.archive.org/web/20120314224050if_/"
12 WGET_URL="$ARCHIVE$WEB_SITE/releases/$VERSION/$TARBALL"
14 DEPENDS="fuse libaio libcrypto perl"
15 BUILD_DEPENDS="fuse-dev scons libaio-dev attr-dev zlib-dev acl-dev openssl-dev \
16 file"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 mkdir -p $DESTDIR/usr
22 cd $src/src
23 # glibc 2.14 update
24 sed -i 's/\*__malloc_initialize_hook/* __volatile __malloc_initialize_hook/' \
25 lib/libumem/malloc.c
26 scons PREFIX=/usr &&
27 scons install_dir=$DESTDIR/usr/sbin \
28 cfg_dir=$DESTDIR/etc \
29 man_dir=$DESTDIR/usr/share/man/man8 install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 cp -a $install/* $fs
36 rm -rf $fs/usr/share/man
37 }