wok-next diff ddrescue/receipt @ rev 21212

updated barnyard2 (1.9 -> 2.1.13)
author Hans-G?nter Theisgen
date Mon Dec 02 17:16:10 2019 +0100 (2019-12-02)
parents eb8067417980
children bd415b6dad46
line diff
     1.1 --- a/ddrescue/receipt	Sat Nov 30 10:06:29 2013 +0000
     1.2 +++ b/ddrescue/receipt	Mon Dec 02 17:16:10 2019 +0100
     1.3 @@ -3,30 +3,27 @@
     1.4  PACKAGE="ddrescue"
     1.5  VERSION="1.14"
     1.6  CATEGORY="system-tools"
     1.7 -SHORT_DESC="Data recovery tool."
     1.8 -MAINTAINER="erjo@slitaz.org"
     1.9 +SHORT_DESC="Data recovery tool"
    1.10 +MAINTAINER="devel@slitaz.org"
    1.11  LICENSE="GPL3"
    1.12 +WEB_SITE="http://www.gnu.org/software/ddrescue/ddrescue.html"
    1.13 +
    1.14  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.15 -WEB_SITE="http://www.gnu.org/software/ddrescue/ddrescue.html"
    1.16  WGET_URL="http://ftp.gnu.org/gnu/ddrescue/$TARBALL"
    1.17 -TAGS="recovery toolkit tools"
    1.18  
    1.19 -DEPENDS="gcc-lib-base"
    1.20 -
    1.21 -# Rules to configure and make the package.
    1.22 -compile_rules()
    1.23 -{
    1.24 -	cd $src
    1.25 -	./configure --prefix=/usr --infodir=/usr/share/info \
    1.26 -	--mandir=/usr/share/man $CONFIGURE_ARGS &&
    1.27 +compile_rules() {
    1.28 +	./configure \
    1.29 +		--prefix=/usr \
    1.30 +		--infodir=/usr/share/info \
    1.31 +		--mandir=/usr/share/man \
    1.32 +		$CONFIGURE_ARGS &&
    1.33  	make &&
    1.34 -	make DESTDIR=$DESTDIR install
    1.35 +	make DESTDIR=$install install
    1.36  }
    1.37  
    1.38 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.39 -genpkg_rules()
    1.40 -{
    1.41 +genpkg_rules() {
    1.42  	mkdir -p $fs/usr
    1.43  	cp -a $install/usr/bin $fs/usr
    1.44 +	DEPENDS="gcc-lib-base"
    1.45 +	TAGS="recovery toolkit tools"
    1.46  }
    1.47 -