wok-next diff e2tools/receipt @ rev 21051

Small updates.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Nov 30 01:34:53 2018 +0200 (2018-11-30)
parents 17e313b5b9c1
children 692f79d957c2
line diff
     1.1 --- a/e2tools/receipt	Tue Feb 17 09:42:47 2015 +0100
     1.2 +++ b/e2tools/receipt	Fri Nov 30 01:34:53 2018 +0200
     1.3 @@ -3,28 +3,27 @@
     1.4  PACKAGE="e2tools"
     1.5  VERSION="0.0.16"
     1.6  CATEGORY="base-system"
     1.7 -SHORT_DESC="Read, write, and manipulate files in an ext2/ext3 filesystem."
     1.8 +SHORT_DESC="Read, write, and manipulate files in an ext2/ext3 filesystem"
     1.9  MAINTAINER="pascal.bellard@slitaz.org"
    1.10  LICENSE="GPL2"
    1.11 +WEB_SITE="https://github.com/ndim/e2tools"
    1.12 +
    1.13  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.14 -WEB_SITE="https://github.com/ndim/$PACKAGE"
    1.15  WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz"
    1.16  
    1.17 -DEPENDS="e2fsprogs"
    1.18 -BUILD_DEPENDS="e2fsprogs-dev wget"
    1.19 +BUILD_DEPENDS="e2fsprogs-dev"
    1.20  
    1.21 -# Rules to configure and make the package.
    1.22 -compile_rules()
    1.23 -{
    1.24 +compile_rules() {
    1.25  	export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries"
    1.26 +
    1.27  	./configure \
    1.28  		--prefix=/usr \
    1.29 -		$CONFIGURE_ARGS
    1.30 -	make && make DESTDIR=$DESTDIR install
    1.31 +		$CONFIGURE_ARGS &&
    1.32 +	make &&
    1.33 +	make DESTDIR=$install install
    1.34  }
    1.35  
    1.36 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.37 -genpkg_rules()
    1.38 -{
    1.39 +genpkg_rules() {
    1.40  	cp -a $install/* $fs
    1.41 +	DEPENDS="e2fsprogs"
    1.42  }