# HG changeset patch # User Christopher Rogers # Date 1293278947 0 # Node ID 5554b127529ab6bdf89491852ddc52354f56d4de # Parent 94764b90b40a9c21bdeccf322af19cd277d54875 Add scrub. Iteratively writes patterns on files or disk devices to make retreiving the data more difficult. diff -r 94764b90b40a -r 5554b127529a scrub/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/scrub/receipt Sat Dec 25 12:09:07 2010 +0000 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="scrub" +VERSION="2.4" +CATEGORY="security" +SHORT_DESC="Iteratively writes patterns on files or disk devices to make retreiving the data more difficult." +MAINTAINER="slaxemulator@gmail.com" +DEPENDS="" +BUILD_DEPENDS="perl" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://code.google.com/p/diskscrub/" +WGET_URL="http://diskscrub.googlecode.com/files/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + $CONFIGURE_ARGS && + make && make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $_pkg/usr/bin $fs/usr +} +