wok 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 | 05e5d73630a7 |
children | 66a052ff61b1 |
files | genext2fs/description.txt genext2fs/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/genext2fs/description.txt Mon Feb 28 17:48:46 2022 +0100 1.3 @@ -0,0 +1,9 @@ 1.4 +Genext2fs generates an ext2 filesystem as a normal (non-root) user. 1.5 +It does not require you to mount the image file to copy files on it, 1.6 +nor does it require that you become the superuser to make device nodes. 1.7 + 1.8 +The filesystem image is created in the file output-image. 1.9 +If not specified, it is sent to stdout. 1.10 +The -d and -a options support reading from stdin if a single hyphen 1.11 +is given as an argument. Thus, genext2fs can be used as part of a 1.12 +pipeline without any temporary files.
2.1 --- a/genext2fs/receipt Mon Feb 28 14:39:39 2022 +0000 2.2 +++ b/genext2fs/receipt Mon Feb 28 17:48:46 2022 +0100 2.3 @@ -1,14 +1,16 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="genext2fs" 2.7 -VERSION="1.4.1" 2.8 +VERSION="1.5.0" 2.9 CATEGORY="base-system" 2.10 SHORT_DESC="Generates an ext2 filesystem as a normal (i.e. non-root) user." 2.11 MAINTAINER="pascal.bellard@slitaz.org" 2.12 LICENSE="GPL2" 2.13 +WEB_SITE="https://github.com/bestouff/genext2fs" 2.14 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.15 -WEB_SITE="http://genext2fs.sourceforge.net/" 2.16 -WGET_URL="$SF_MIRROR/$PACKAGE/$VERSION/$TARBALL" 2.17 +WGET_URL="https://github.com/bestouff/$PACKAGE/archive/refs/tags/v$VERSION.tar.gz" 2.18 + 2.19 +BUILD_DEPENDS="automake" 2.20 2.21 # What is the latest version available today? 2.22 current_version() 2.23 @@ -21,16 +23,16 @@ 2.24 # Rules to configure and make the package. 2.25 compile_rules() 2.26 { 2.27 - ./configure --prefix=/usr \ 2.28 + ./autogen.sh && 2.29 + ./configure \ 2.30 + --prefix=/usr \ 2.31 $CONFIGURE_ARGS && 2.32 make && 2.33 - make DESTDIR=$DESTDIR install 2.34 + make install DESTDIR=$DESTDIR 2.35 } 2.36 2.37 # Rules to gen a SliTaz package suitable for Tazpkg. 2.38 genpkg_rules() 2.39 { 2.40 - mkdir -p $fs/usr 2.41 - cp -a $install/usr/bin $fs/usr 2.42 + cook_copy_folders bin 2.43 } 2.44 -