# HG changeset patch # User Hans-G?nter Theisgen # Date 1646066926 -3600 # Node ID d2113b0b8c408cddc8a72e0cb518d52b15155877 # Parent 05e5d73630a7c03d296284f35d6579ce6b492341 updated genext2fs (1.4.1 -> 1.5.0) diff -r 05e5d73630a7 -r d2113b0b8c40 genext2fs/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/genext2fs/description.txt Mon Feb 28 17:48:46 2022 +0100 @@ -0,0 +1,9 @@ +Genext2fs generates an ext2 filesystem as a normal (non-root) user. +It does not require you to mount the image file to copy files on it, +nor does it require that you become the superuser to make device nodes. + +The filesystem image is created in the file output-image. +If not specified, it is sent to stdout. +The -d and -a options support reading from stdin if a single hyphen +is given as an argument. Thus, genext2fs can be used as part of a +pipeline without any temporary files. diff -r 05e5d73630a7 -r d2113b0b8c40 genext2fs/receipt --- a/genext2fs/receipt Mon Feb 28 14:39:39 2022 +0000 +++ b/genext2fs/receipt Mon Feb 28 17:48:46 2022 +0100 @@ -1,14 +1,16 @@ # SliTaz package receipt. PACKAGE="genext2fs" -VERSION="1.4.1" +VERSION="1.5.0" CATEGORY="base-system" SHORT_DESC="Generates an ext2 filesystem as a normal (i.e. non-root) user." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" +WEB_SITE="https://github.com/bestouff/genext2fs" TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://genext2fs.sourceforge.net/" -WGET_URL="$SF_MIRROR/$PACKAGE/$VERSION/$TARBALL" +WGET_URL="https://github.com/bestouff/$PACKAGE/archive/refs/tags/v$VERSION.tar.gz" + +BUILD_DEPENDS="automake" # What is the latest version available today? current_version() @@ -21,16 +23,16 @@ # Rules to configure and make the package. compile_rules() { - ./configure --prefix=/usr \ + ./autogen.sh && + ./configure \ + --prefix=/usr \ $CONFIGURE_ARGS && make && - make DESTDIR=$DESTDIR install + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - cp -a $install/usr/bin $fs/usr + cook_copy_folders bin } -