wok-next view unionfs-fuse/receipt @ rev 21469

updated tinc (1.0.25 -> 1.0.36)
author Hans-G?nter Theisgen
date Wed May 13 07:41:00 2020 +0100 (2020-05-13)
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 }