wok-6.x annotate unionfs-fuse/receipt @ rev 21975
updated st (0.5 -> 0.8.2)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Oct 11 14:31:25 2019 +0100 (2019-10-11) |
parents | 6135577f4d08 |
children | 7e8305bf137c |
rev | line source |
---|---|
slaxemulator@8979 | 1 # SliTaz package receipt. |
slaxemulator@8979 | 2 |
slaxemulator@8979 | 3 PACKAGE="unionfs-fuse" |
slaxemulator@8979 | 4 VERSION="0.24" |
slaxemulator@8979 | 5 CATEGORY="system-tools" |
slaxemulator@8979 | 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." |
slaxemulator@8979 | 7 MAINTAINER="slaxemulator@gmail.com" |
pascal@15601 | 8 LICENSE="BSD" |
slaxemulator@8979 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pascal@20682 | 10 WEB_SITE="https://github.com/rpodgorny/unionfs-fuse" |
slaxemulator@8979 | 11 WGET_URL="http://podgorny.cz/unionfs-fuse/releases/$TARBALL" |
slaxemulator@8979 | 12 |
pascal@15601 | 13 DEPENDS="fuse" |
pascal@15601 | 14 BUILD_DEPENDS="cmake fuse-dev" |
pascal@15601 | 15 |
slaxemulator@8979 | 16 # Rules to configure and make the package. |
slaxemulator@8979 | 17 compile_rules() |
slaxemulator@8979 | 18 { |
slaxemulator@8979 | 19 cd $src |
slaxemulator@8979 | 20 cmake -DCMAKE_INSTALL_PREFIX=/usr . && \ |
slaxemulator@8979 | 21 make && make install |
slaxemulator@8979 | 22 } |
slaxemulator@8979 | 23 |
slaxemulator@8979 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
slaxemulator@8979 | 25 genpkg_rules() |
slaxemulator@8979 | 26 { |
slaxemulator@8979 | 27 mkdir -p $fs/usr |
pascal@15601 | 28 cp -a $install/usr/bin $fs/usr |
slaxemulator@8979 | 29 } |
slaxemulator@8979 | 30 |