# SliTaz package receipt. PACKAGE="unionfs-fuse" VERSION="2.1" CATEGORY="system-tools" SHORT_DESC="An effort to create a userland unionfs implementation that is way more flexible than the current in-kernel based unionfs solution." MAINTAINER="slaxemulator@gmail.com" LICENSE="BSD" WEB_SITE="https://github.com/rpodgorny/unionfs-fuse" TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz" DEPENDS="fuse2" BUILD_DEPENDS="cmake fuse2-dev" current_version() { wget -O - ${WGET_URL%/arch*}/tags 2>/dev/null | \ sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' } # Rules to configure and make the package. compile_rules() { cmake -DCMAKE_INSTALL_PREFIX=/usr . && make && make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr cp -a $install/usr/bin $fs/usr }