wok rev 22638
updated dd_rescue (1.22 -> 1.99.8)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Jan 13 17:41:14 2020 +0100 (2020-01-13) |
parents | 7deb257e1d83 |
children | ce01bc78a7aa |
files | dd_rescue/receipt |
line diff
1.1 --- a/dd_rescue/receipt Mon Jan 13 17:28:06 2020 +0100 1.2 +++ b/dd_rescue/receipt Mon Jan 13 17:41:14 2020 +0100 1.3 @@ -1,28 +1,30 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="dd_rescue" 1.7 -VERSION="1.22" 1.8 +VERSION="1.99.8" 1.9 CATEGORY="system-tools" 1.10 SHORT_DESC="Block device copy tools." 1.11 MAINTAINER="erjo@slitaz.org" 1.12 LICENSE="GPL2" 1.13 +WEB_SITE="http://www.garloff.de/kurt/linux/ddrescue/" 1.14 + 1.15 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.16 -WEB_SITE="http://www.garloff.de/kurt/linux/ddrescue/" 1.17 WGET_URL="http://www.garloff.de/kurt/linux/ddrescue/$TARBALL" 1.18 1.19 -DEPENDS="" 1.20 +DEPENDS="openssl" 1.21 +BUILD_DEPENDS="autoconf automake openssl-dev" 1.22 1.23 # Rules to configure and make the package. 1.24 compile_rules() 1.25 { 1.26 - cd $src 1.27 - make 1.28 + ./autogen.sh && 1.29 + make prefix=/usr && 1.30 + make install prefix=/usr 1.31 } 1.32 1.33 # Rules to gen a SliTaz package suitable for Tazpkg. 1.34 genpkg_rules() 1.35 { 1.36 mkdir -p $fs/usr/bin 1.37 - cp -a $src/dd_rescue $fs/usr/bin 1.38 + cp -a $src/dd_rescue $fs/usr/bin 1.39 } 1.40 -