# HG changeset patch # User Christopher Rogers # Date 1291542114 0 # Node ID dfde5deae74fe9844e8481f4c56410a19ef5f9fb # Parent 5e53a50e9047c1f28e27a45dfea22a88a27985a5 Add magicrescue. Find and recover deleted files on block devices. diff -r 5e53a50e9047 -r dfde5deae74f magicrescue/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/magicrescue/receipt Sun Dec 05 09:41:54 2010 +0000 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="magicrescue" +VERSION="1.1.9" +CATEGORY="utilities" +SHORT_DESC="Find and recover deleted files on block devices." +MAINTAINER="slaxemulator@gmail.com" +DEPENDS="perl" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://freshmeat.net/projects/magicrescue/" +WGET_URL="http://www.itu.dk/people/jobr/$PACKAGE/release/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + install -d $PWD/_pkg/usr + ./configure \ + --prefix=/usr \ + $CONFIGURE_ARGS && + make PREFIX=$PWD/_pkg/usr install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/share + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/share/magicrescue $fs/usr/share +} +