wok-next view zfs-fuse/receipt @ rev 21724

busybox: update configs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 11:04:25 2020 +0000 (2020-09-01)
parents d958fec46c9f
children
line source
1 # SliTaz package receipt v2.
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 REPOLOGY="fusefs:zfs"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
13 WGET_URL="$WEB_SITE/releases/$VERSION/$TARBALL"
15 BUILD_DEPENDS="fuse2-dev scons libaio-dev attr-dev zlib-dev acl-dev openssl-dev"
17 compile_rules() {
18 mkdir -p $install/usr
19 cd $src/src
20 # glibc 2.14 update
21 sed -i 's/\*__malloc_initialize_hook/* __volatile __malloc_initialize_hook/' \
22 lib/libumem/malloc.c
23 scons PREFIX=/usr &&
24 scons install_dir=$install/usr/sbin \
25 cfg_dir=$install/etc \
26 man_dir=$install/usr/share/man/man8 install
27 }
29 genpkg_rules() {
30 copy @std
31 DEPENDS="fuse2 libaio openssl perl"
32 }