wok view wipe/receipt @ rev 10675

iptables: fix kvers
author Christophe Lincoln <pankso@slitaz.org>
date Fri May 27 11:09:25 2011 +0200 (2011-05-27)
parents fc1c0320fa79
children 2a21689b0af7
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 $CONFIGURE_ARGS &&
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 }