wok-6.x view dd_rescue/receipt @ 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 | eb8067417980 |
children | ce01bc78a7aa |
line source
1 # SliTaz package receipt.
3 PACKAGE="dd_rescue"
4 VERSION="1.99.8"
5 CATEGORY="system-tools"
6 SHORT_DESC="Block device copy tools."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://www.garloff.de/kurt/linux/ddrescue/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="http://www.garloff.de/kurt/linux/ddrescue/$TARBALL"
14 DEPENDS="openssl"
15 BUILD_DEPENDS="autoconf automake openssl-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./autogen.sh &&
21 make prefix=/usr &&
22 make install prefix=/usr
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/bin
29 cp -a $src/dd_rescue $fs/usr/bin
30 }