wok view dd_rescue/receipt @ rev 4215

fcgi: build fix build with gcc 4.x
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Thu Sep 24 10:06:40 2009 +0000 (2009-09-24)
parents 6a9428a46323
children 0db5fd19d4c1
line source
1 # SliTaz package receipt.
3 PACKAGE="dd_rescue"
4 VERSION="1.14"
5 CATEGORY="system-tools"
6 SHORT_DESC="Block device copy tools."
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS=""
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.garloff.de/kurt/linux/ddrescue/"
11 WGET_URL="http://www.garloff.de/kurt/linux/ddrescue/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 src=$PACKAGE
17 cd $src
18 make
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 src=$PACKAGE
25 mkdir -p $fs/usr/bin
26 cp -a $src/dd_rescue $fs/usr/bin
27 }
29 clean_wok()
30 {
31 rm -rf $WOK/$PACKAGE/$PACKAGE
32 }