# HG changeset patch # User Rohit Joshi # Date 1266398165 0 # Node ID e6748c4a1d22c1ba873181543d56100a96dd9c24 # Parent f6fb8ef6268e525c2ec5a1e44e74c3a526c9a6ab Add wipe (secure rm) diff -r f6fb8ef6268e -r e6748c4a1d22 wipe/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/wipe/receipt Wed Feb 17 09:16:05 2010 +0000 @@ -0,0 +1,28 @@ +# SliTaz package receipt. + +PACKAGE="wipe" +VERSION="2.3.0" +CATEGORY="misc" +MAINTAINER="jozee@slitaz.org" +SHORT_DESC="A file and block device delete/erase utility - a secure rm" +DEPENDS="glibc-base" +WEB_SITE="http://wipe.sourceforge.net/" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WGET_URL="http://downloads.sourceforge.net/$PACKAGE/$TARBALL" +TAGS="delete" + +# Rules to configure and make the package. + +compile_rules() { + cd $src + ./configure --prefix=/usr && + make && + make prefix=$PWD/_pkg/usr install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $_pkg/usr/bin $fs/usr +}