wok-next view unionfs-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 d5aab818505e
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="unionfs-fuse"
4 VERSION="0.24"
5 CATEGORY="system-tools"
6 SHORT_DESC="Flexible userland unionfs implementation"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="https://github.com/rpodgorny/unionfs-fuse"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="http://podgorny.cz/unionfs-fuse/releases/$TARBALL"
14 BUILD_DEPENDS="cmake fuse2-dev"
16 compile_rules() {
17 sed -i 's/extern inline/static inline/' src/hashtable_itr.h
18 sed -i '/^void */{NNd}' src/hashtable_itr.c
20 cmake \
21 -DCMAKE_INSTALL_PREFIX=/usr \
22 . &&
23 make &&
24 make install
25 }
27 genpkg_rules() {
28 copy @std
29 DEPENDS="fuse2"
30 }