wok annotate unionfs-fuse/receipt @ rev 24431
updated conntrack-tools (1.4.5 -> 1.4.6)
author | Hans-G?nter Theisgen |
---|---|
date | Sat Feb 12 17:24:11 2022 +0100 (2022-02-12) |
parents | 5ea0ce1cecc0 |
children | 72f2704d3ae0 |
rev | line source |
---|---|
slaxemulator@8979 | 1 # SliTaz package receipt. |
slaxemulator@8979 | 2 |
slaxemulator@8979 | 3 PACKAGE="unionfs-fuse" |
Hans-G?nter@23719 | 4 VERSION="2.1" |
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 |
pascal@24055 | 17 current_version() |
pascal@24055 | 18 { |
pascal@24299 | 19 wget -O - ${WGET_URL%/arch*}/tags 2>/dev/null | \ |
pascal@24055 | 20 sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' |
pascal@24055 | 21 } |
pascal@24055 | 22 |
slaxemulator@8979 | 23 # Rules to configure and make the package. |
slaxemulator@8979 | 24 compile_rules() |
slaxemulator@8979 | 25 { |
Hans-G?nter@22077 | 26 cmake -DCMAKE_INSTALL_PREFIX=/usr . && |
Hans-G?nter@22077 | 27 make && |
Hans-G?nter@22077 | 28 make install |
slaxemulator@8979 | 29 } |
slaxemulator@8979 | 30 |
slaxemulator@8979 | 31 # Rules to gen a SliTaz package suitable for Tazpkg. |
slaxemulator@8979 | 32 genpkg_rules() |
slaxemulator@8979 | 33 { |
slaxemulator@8979 | 34 mkdir -p $fs/usr |
Hans-G?nter@23719 | 35 cp -a $install/usr/bin $fs/usr |
slaxemulator@8979 | 36 } |