wok-next rev 21611
updated e2tools (0.0.16 -> 0.1.0)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Jun 25 10:16:44 2020 +0100 (2020-06-25) |
parents | 465be5ff8599 |
children | 420baedeb7cc |
files | e2tools/receipt |
line diff
1.1 --- a/e2tools/receipt Thu Jun 25 10:07:33 2020 +0100 1.2 +++ b/e2tools/receipt Thu Jun 25 10:16:44 2020 +0100 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 }