wok view wipe/receipt @ rev 8223

imported patch cleanup/dmsetup.patch
author Antoine Bodin <gokhlayeh@slitaz.org>
date Thu Jan 27 00:20:50 2011 +0100 (2011-01-27)
parents e6748c4a1d22
children ad480a4addbc
line source
1 # SliTaz package receipt.
3 PACKAGE="wipe"
4 VERSION="2.3.1"
5 CATEGORY="misc"
6 MAINTAINER="jozee@slitaz.org"
7 SHORT_DESC="A file and block device delete/erase utility - a secure rm"
8 DEPENDS="glibc-base"
9 WEB_SITE="http://wipe.sourceforge.net/"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WGET_URL="http://downloads.sourceforge.net/$PACKAGE/$TARBALL"
12 TAGS="delete"
14 # Rules to configure and make the package.
16 compile_rules() {
17 cd $src
18 ./configure --prefix=/usr &&
19 make &&
20 make prefix=$PWD/_pkg/usr install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $_pkg/usr/bin $fs/usr
28 }