wok annotate unionfs-fuse/receipt @ rev 23268
updated osip and osip-dev (5.1.0 -> 5.1.1)
author | Hans-G?nter Theisgen |
---|---|
date | Sat Mar 28 10:41:34 2020 +0100 (2020-03-28) |
parents | 20661c276bcf |
children | 121468538a89 |
rev | line source |
---|---|
slaxemulator@8979 | 1 # SliTaz package receipt. |
slaxemulator@8979 | 2 |
slaxemulator@8979 | 3 PACKAGE="unionfs-fuse" |
Hans-G?nter@22077 | 4 VERSION="2.0" |
slaxemulator@8979 | 5 CATEGORY="system-tools" |
Hans-G?nter@22077 | 6 SHORT_DESC="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" |
pascal@20682 | 9 WEB_SITE="https://github.com/rpodgorny/unionfs-fuse" |
Hans-G?nter@22077 | 10 |
Hans-G?nter@22077 | 11 TARBALL="$PACKAGE-$VERSION.tar.gz" |
Hans-G?nter@22077 | 12 WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz" |
slaxemulator@8979 | 13 |
pascal@15601 | 14 DEPENDS="fuse" |
pascal@15601 | 15 BUILD_DEPENDS="cmake fuse-dev" |
pascal@15601 | 16 |
slaxemulator@8979 | 17 # Rules to configure and make the package. |
slaxemulator@8979 | 18 compile_rules() |
slaxemulator@8979 | 19 { |
Hans-G?nter@22077 | 20 cmake -DCMAKE_INSTALL_PREFIX=/usr . && |
Hans-G?nter@22077 | 21 make && |
Hans-G?nter@22077 | 22 make install |
slaxemulator@8979 | 23 } |
slaxemulator@8979 | 24 |
slaxemulator@8979 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
slaxemulator@8979 | 26 genpkg_rules() |
slaxemulator@8979 | 27 { |
slaxemulator@8979 | 28 mkdir -p $fs/usr |
pascal@15601 | 29 cp -a $install/usr/bin $fs/usr |
slaxemulator@8979 | 30 } |