wok-6.x diff bindfs/receipt @ rev 24120
updated xfig (3.2.5b -> 3.2.8b)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Oct 05 16:55:05 2021 +0100 (2021-10-05) |
parents | |
children | ac8ca9758df1 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/bindfs/receipt Tue Oct 05 16:55:05 2021 +0100 1.3 @@ -0,0 +1,38 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="bindfs" 1.7 +VERSION="1.15.1" 1.8 +CATEGORY="system-tools" 1.9 +SHORT_DESC="Mount a directory to another location and alter permission bits." 1.10 +MAINTAINER="pascal.bellard@slitaz.org" 1.11 +LICENSE="GPL2" 1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.13 +WEB_SITE="https://bindfs.org/" 1.14 +WGET_URL="https://github.com/mpartel/bindfs/archive/refs/tags/$VERSION.tar.gz" 1.15 + 1.16 +DEPENDS="fuse" 1.17 +BUILD_DEPENDS="fuse-dev autoconf automake libtool" 1.18 + 1.19 +current_version() 1.20 +{ 1.21 + wget -O - https://github.com/mpartel/bindfs/releases 2>/dev/null | \ 1.22 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 1.23 +} 1.24 + 1.25 +# Rules to configure and make the package. 1.26 +compile_rules() 1.27 +{ 1.28 + sed -i 's|-Wpedantic ||' configure.ac 1.29 + ./autogen.sh 1.30 + ./configure --prefix=/usr \ 1.31 + --mandir=/usr/share/man $CONFIGURE_ARGS && 1.32 + make && 1.33 + make DESTDIR=$DESTDIR install 1.34 +} 1.35 + 1.36 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.37 +genpkg_rules() 1.38 +{ 1.39 + mkdir -p $fs/usr 1.40 + cp -a $install/usr/bin $fs/usr 1.41 +}