# HG changeset patch # User Hans-G?nter Theisgen # Date 1593076604 -3600 # Node ID 692f79d957c2142d7086ea5995c56bbc44762555 # Parent 465be5ff8599d2e9b1ef804643482cb17370aef1 updated e2tools (0.0.16 -> 0.1.0) diff -r 465be5ff8599 -r 692f79d957c2 e2tools/receipt --- a/e2tools/receipt Thu Jun 25 10:07:33 2020 +0100 +++ b/e2tools/receipt Thu Jun 25 10:16:44 2020 +0100 @@ -1,29 +1,31 @@ # SliTaz package receipt. PACKAGE="e2tools" -VERSION="0.0.16" +VERSION="0.1.0" CATEGORY="base-system" -SHORT_DESC="Read, write, and manipulate files in an ext2/ext3 filesystem" +SHORT_DESC="Read, write, and manipulate files in an ext2 and ext3 filesystem" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" -WEB_SITE="https://github.com/ndim/e2tools" +WEB_SITE="https://e2tools.github.io/" TARBALL="$PACKAGE-$VERSION.tar.gz" -WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz" +WGET_URL="https://github.com/$PACKAGE/$PACKAGE/releases/download/v$VERSION/$TARBALL" BUILD_DEPENDS="e2fsprogs-dev" -compile_rules() { +compile_rules() +{ export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries" - ./configure \ - --prefix=/usr \ + ./configure \ + --prefix=/usr \ $CONFIGURE_ARGS && make && make DESTDIR=$install install } -genpkg_rules() { - cp -a $install/* $fs +genpkg_rules() +{ + cp -a $install/* $fs DEPENDS="e2fsprogs" }