wok-6.x diff genext2fs/receipt @ rev 24591

updated genext2fs (1.4.1 -> 1.5.0)
author Hans-G?nter Theisgen
date Mon Feb 28 17:48:46 2022 +0100 (2022-02-28)
parents 932cd974e081
children ad9008f821da
line diff
     1.1 --- a/genext2fs/receipt	Tue Feb 08 18:20:23 2022 +0000
     1.2 +++ b/genext2fs/receipt	Mon Feb 28 17:48:46 2022 +0100
     1.3 @@ -1,14 +1,16 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="genext2fs"
     1.7 -VERSION="1.4.1"
     1.8 +VERSION="1.5.0"
     1.9  CATEGORY="base-system"
    1.10  SHORT_DESC="Generates an ext2 filesystem as a normal (i.e. non-root) user."
    1.11  MAINTAINER="pascal.bellard@slitaz.org"
    1.12  LICENSE="GPL2"
    1.13 +WEB_SITE="https://github.com/bestouff/genext2fs"
    1.14  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.15 -WEB_SITE="http://genext2fs.sourceforge.net/"
    1.16 -WGET_URL="$SF_MIRROR/$PACKAGE/$VERSION/$TARBALL"
    1.17 +WGET_URL="https://github.com/bestouff/$PACKAGE/archive/refs/tags/v$VERSION.tar.gz"
    1.18 +
    1.19 +BUILD_DEPENDS="automake"
    1.20  
    1.21  # What is the latest version available today?
    1.22  current_version()
    1.23 @@ -21,16 +23,16 @@
    1.24  # Rules to configure and make the package.
    1.25  compile_rules()
    1.26  {
    1.27 -	./configure --prefix=/usr \
    1.28 +	./autogen.sh &&
    1.29 +	./configure		\
    1.30 +		--prefix=/usr	\
    1.31  		$CONFIGURE_ARGS &&
    1.32  	make &&
    1.33 -	make DESTDIR=$DESTDIR install
    1.34 +	make install DESTDIR=$DESTDIR
    1.35  }
    1.36  
    1.37  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.38  genpkg_rules()
    1.39  {
    1.40 -	mkdir -p $fs/usr
    1.41 -	cp -a $install/usr/bin $fs/usr
    1.42 +	cook_copy_folders	bin
    1.43  }
    1.44 -