# HG changeset patch # User Hans-G?nter Theisgen # Date 1556031696 -3600 # Node ID 9d8df9f05e923f688527abfb929f7b6f66658533 # Parent b4401072e6d3251f24213e002f94a91787060e69 updated lziprecover (1.20 -> 1.21) diff -r b4401072e6d3 -r 9d8df9f05e92 lziprecover/receipt --- a/lziprecover/receipt Tue Apr 23 15:37:46 2019 +0100 +++ b/lziprecover/receipt Tue Apr 23 16:01:36 2019 +0100 @@ -1,25 +1,30 @@ # SliTaz package receipt. PACKAGE="lziprecover" -VERSION="1.20" +VERSION="1.21" CATEGORY="utilities" -SHORT_DESC="LZIP files recovery tool" +SHORT_DESC="LZIP files recovery tool." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" +WEB_SITE="https://www.nongnu.org/lzip/lziprecover.html" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://www.nongnu.org/lzip/lziprecover.html" WGET_URL="http://download.savannah.gnu.org/releases/lzip/lziprecover/$TARBALL" -HOST_ARCH="i486 arm" DEPENDS="gcc-lib-base" +HOST_ARCH="i486 arm" + # Rules to configure and make the package. compile_rules() { mkdir -p $DESTDIR/usr/share/doc - cp README $DESTDIR/usr/share/doc - ./configure --prefix=/usr $CONFIGURE_ARGS && - make && + cp README $DESTDIR/usr/share/doc + + ./configure \ + --prefix=/usr \ + $CONFIGURE_ARGS && + make -j 1 && make DESTDIR=$DESTDIR install }