wok view unionfs-fuse/receipt @ rev 20993

gpicview: modified TARBALL
author Hans-G?nter Theisgen
date Thu Mar 07 17:13:01 2019 +0100 (2019-03-07)
parents 6135577f4d08
children 7e8305bf137c
line source
1 # SliTaz package receipt.
3 PACKAGE="unionfs-fuse"
4 VERSION="0.24"
5 CATEGORY="system-tools"
6 SHORT_DESC="unionfs-fuse is an effort to create a userland unionfs implementation that is way more flexible than the current in-kernel based unionfs solution."
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="https://github.com/rpodgorny/unionfs-fuse"
11 WGET_URL="http://podgorny.cz/unionfs-fuse/releases/$TARBALL"
13 DEPENDS="fuse"
14 BUILD_DEPENDS="cmake fuse-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 cmake -DCMAKE_INSTALL_PREFIX=/usr . && \
21 make && make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $install/usr/bin $fs/usr
29 }