wok diff bindfs/receipt @ rev 24237

updated perl-maketext-gettext (1.26 -> 1.32)
author Hans-G?nter Theisgen
date Sun Jan 02 07:13:31 2022 +0100 (2022-01-02)
parents
children ac8ca9758df1
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/bindfs/receipt	Sun Jan 02 07:13:31 2022 +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 +}