wok view ddrescue/receipt @ rev 13077

Up: fuse to 2.8.7.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Jun 25 08:53:28 2012 +0000 (2012-06-25)
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 }