wok-next view funionfs/receipt @ rev 20527
Change virtual "fuse" to real "fuse2"
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Sat Mar 24 11:07:24 2018 +0200 (2018-03-24) |
parents | fcdd50638150 |
children | 835b3b8ce6ac |
line source
1 # SliTaz package receipt v2.
3 PACKAGE="funionfs"
4 VERSION="0.4.3"
5 CATEGORY="system-tools"
6 SHORT_DESC="Union filesystem implemented with FUSE"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://funionfs.apiou.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="${WEB_SITE}file/$TARBALL"
14 BUILD_DEPENDS="fuse2-dev"
16 compile_rules() {
17 ./configure \
18 --prefix=/usr \
19 --bindir=/bin \
20 --libexecdir=/usr/bin \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$DESTDIR install
25 }
27 genpkg_rules() {
28 copy @std
29 DEPENDS="fuse2"
30 TAGS="filesystem"
31 }