wok view ddrescue/receipt @ rev 12806

Up linapple (2a)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 19 13:00:27 2012 +0200 (2012-05-19)
parents c1c625825edc
children eb8067417980
line source
1 # SliTaz package receipt.
3 PACKAGE="ddrescue"
4 VERSION="1.14"
5 CATEGORY="system-tools"
6 SHORT_DESC="Data recovery tool."
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="gcc-lib-base"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.gnu.org/software/ddrescue/ddrescue.html"
11 WGET_URL="http://ftp.gnu.org/gnu/ddrescue/$TARBALL"
12 TAGS="recovery toolkit tools"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr --infodir=/usr/share/info \
20 --mandir=/usr/share/man $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $_pkg/usr/bin $fs/usr
30 }