wok-next diff e2tools/receipt @ rev 21724

busybox: update configs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 11:04:25 2020 +0000 (2020-09-01)
parents d5aab818505e
children
line diff
     1.1 --- a/e2tools/receipt	Fri Nov 02 14:15:08 2018 +0200
     1.2 +++ b/e2tools/receipt	Tue Sep 01 11:04:25 2020 +0000
     1.3 @@ -1,29 +1,31 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="e2tools"
     1.7 -VERSION="0.0.16"
     1.8 +VERSION="0.1.0"
     1.9  CATEGORY="base-system"
    1.10 -SHORT_DESC="Read, write, and manipulate files in an ext2/ext3 filesystem"
    1.11 +SHORT_DESC="Read, write, and manipulate files in an ext2 and ext3 filesystem"
    1.12  MAINTAINER="pascal.bellard@slitaz.org"
    1.13  LICENSE="GPL2"
    1.14 -WEB_SITE="https://github.com/ndim/e2tools"
    1.15 +WEB_SITE="https://e2tools.github.io/"
    1.16  
    1.17  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.18 -WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz"
    1.19 +WGET_URL="https://github.com/$PACKAGE/$PACKAGE/releases/download/v$VERSION/$TARBALL"
    1.20  
    1.21  BUILD_DEPENDS="e2fsprogs-dev"
    1.22  
    1.23 -compile_rules() {
    1.24 +compile_rules()
    1.25 +{
    1.26  	export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries"
    1.27  
    1.28 -	./configure \
    1.29 -		--prefix=/usr \
    1.30 +	./configure		\
    1.31 +		--prefix=/usr	\
    1.32  		$CONFIGURE_ARGS &&
    1.33  	make &&
    1.34  	make DESTDIR=$install install
    1.35  }
    1.36  
    1.37 -genpkg_rules() {
    1.38 -	cp -a $install/* $fs
    1.39 +genpkg_rules()
    1.40 +{
    1.41 +	cp -a $install/*	$fs
    1.42  	DEPENDS="e2fsprogs"
    1.43  }