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

gtk3: added build dependency libxtst
author Hans-G?nter Theisgen
date Tue Aug 04 17:36:05 2020 +0100 (2020-08-04)
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 }