wok view magicrescue/receipt @ rev 9404

Up: slitaz-mercurial-style to 1.0.7. You didn't tag. Also no need for high jumps since it will make everything else 2.0.x for linearer versioning.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun Mar 27 18:50:59 2011 +0000 (2011-03-27)
parents
children 3765f181a6d5
line source
1 # SliTaz package receipt.
3 PACKAGE="magicrescue"
4 VERSION="1.1.9"
5 CATEGORY="utilities"
6 SHORT_DESC="Find and recover deleted files on block devices."
7 MAINTAINER="slaxemulator@gmail.com"
8 DEPENDS="perl"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://freshmeat.net/projects/magicrescue/"
11 WGET_URL="http://www.itu.dk/people/jobr/$PACKAGE/release/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 install -d $PWD/_pkg/usr
18 ./configure \
19 --prefix=/usr \
20 $CONFIGURE_ARGS &&
21 make PREFIX=$PWD/_pkg/usr install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/share
28 cp -a $_pkg/usr/bin $fs/usr
29 cp -a $_pkg/usr/share/magicrescue $fs/usr/share
30 }