wok-current annotate dd_rescue/receipt @ rev 11765
up mtr (0.82) and added description
author | Samuel Trassare <samuel_trassare@yahoo.com> |
---|---|
date | Wed Feb 22 17:33:57 2012 -0800 (2012-02-22) |
parents | 0db5fd19d4c1 |
children | eb8067417980 |
rev | line source |
---|---|
erjo@621 | 1 # SliTaz package receipt. |
erjo@621 | 2 |
erjo@621 | 3 PACKAGE="dd_rescue" |
slaxemulator@6237 | 4 VERSION="1.22" |
erjo@621 | 5 CATEGORY="system-tools" |
erjo@621 | 6 SHORT_DESC="Block device copy tools." |
erjo@784 | 7 MAINTAINER="erjo@slitaz.org" |
erjo@621 | 8 DEPENDS="" |
erjo@621 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
erjo@621 | 10 WEB_SITE="http://www.garloff.de/kurt/linux/ddrescue/" |
erjo@621 | 11 WGET_URL="http://www.garloff.de/kurt/linux/ddrescue/$TARBALL" |
erjo@621 | 12 |
erjo@621 | 13 # Rules to configure and make the package. |
erjo@621 | 14 compile_rules() |
erjo@621 | 15 { |
erjo@621 | 16 cd $src |
erjo@621 | 17 make |
erjo@621 | 18 } |
erjo@621 | 19 |
erjo@621 | 20 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@621 | 21 genpkg_rules() |
erjo@621 | 22 { |
erjo@621 | 23 mkdir -p $fs/usr/bin |
erjo@621 | 24 cp -a $src/dd_rescue $fs/usr/bin |
erjo@621 | 25 } |
erjo@621 | 26 |