# HG changeset patch # User Hans-G?nter Theisgen # Date 1572364695 -3600 # Node ID 7e8305bf137c40b3e4b212c518507833c27fab6c # Parent 90fcf7b0f8d54527d058192a67a6652a52c82070 updated unionfs-fuse (0.24 -> 2.0) diff -r 90fcf7b0f8d5 -r 7e8305bf137c unionfs-fuse/receipt --- a/unionfs-fuse/receipt Tue Oct 29 16:48:57 2019 +0100 +++ b/unionfs-fuse/receipt Tue Oct 29 16:58:15 2019 +0100 @@ -1,14 +1,15 @@ # SliTaz package receipt. PACKAGE="unionfs-fuse" -VERSION="0.24" +VERSION="2.0" CATEGORY="system-tools" -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." +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" -TARBALL="$PACKAGE-$VERSION.tar.bz2" WEB_SITE="https://github.com/rpodgorny/unionfs-fuse" -WGET_URL="http://podgorny.cz/unionfs-fuse/releases/$TARBALL" + +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz" DEPENDS="fuse" BUILD_DEPENDS="cmake fuse-dev" @@ -16,9 +17,9 @@ # Rules to configure and make the package. compile_rules() { - cd $src - cmake -DCMAKE_INSTALL_PREFIX=/usr . && \ - make && make install + cmake -DCMAKE_INSTALL_PREFIX=/usr . && + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. @@ -27,4 +28,3 @@ mkdir -p $fs/usr cp -a $install/usr/bin $fs/usr } -