wok-next diff genext2fs/receipt @ rev 21596

updated dos2unix (7.4.0 -> 7.4.1)
author Hans-G?nter Theisgen
date Wed Jun 24 14:10:06 2020 +0100 (2020-06-24)
parents 77cfd35fcd5d
children
line diff
     1.1 --- a/genext2fs/receipt	Sun Nov 02 13:51:07 2014 +0100
     1.2 +++ b/genext2fs/receipt	Wed Jun 24 14:10:06 2020 +0100
     1.3 @@ -3,26 +3,23 @@
     1.4  PACKAGE="genext2fs"
     1.5  VERSION="1.4.1"
     1.6  CATEGORY="base-system"
     1.7 -SHORT_DESC="Generates an ext2 filesystem as a normal (i.e. non-root) user."
     1.8 +SHORT_DESC="Generates an ext2 filesystem as a normal (i.e. non-root) user"
     1.9  MAINTAINER="pascal.bellard@slitaz.org"
    1.10  LICENSE="GPL2"
    1.11 +WEB_SITE="http://genext2fs.sourceforge.net/"
    1.12 +
    1.13  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.14 -WEB_SITE="http://genext2fs.sourceforge.net/"
    1.15 -WGET_URL="$SF_MIRROR/$PACKAGE/$VERSION/$TARBALL"
    1.16 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.17  
    1.18 -# Rules to configure and make the package.
    1.19 -compile_rules()
    1.20 -{
    1.21 -	./configure --prefix=/usr \
    1.22 +compile_rules() {
    1.23 +	./configure \
    1.24 +		--prefix=/usr \
    1.25  		$CONFIGURE_ARGS &&
    1.26  	make &&
    1.27 -	make DESTDIR=$DESTDIR install
    1.28 +	make DESTDIR=$install install
    1.29  }
    1.30  
    1.31 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.32 -genpkg_rules()
    1.33 -{
    1.34 +genpkg_rules() {
    1.35  	mkdir -p $fs/usr
    1.36  	cp -a $install/usr/bin $fs/usr
    1.37  }
    1.38 -