wok-next view wipe/receipt @ rev 17516

Remove some categories (system -> system-tools, web -> network, devel -> development, news -> network).
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Jan 15 01:14:17 2015 +0200 (2015-01-15)
parents ad480a4addbc
children 1eb4aacb48ed
line source
1 # SliTaz package receipt.
3 PACKAGE="wipe"
4 VERSION="2.3.1"
5 CATEGORY="misc"
6 MAINTAINER="jozee@slitaz.org"
7 LICENSE="GPL2"
8 SHORT_DESC="A file and block device delete/erase utility - a secure rm"
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 DEPENDS="glibc-base"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr $CONFIGURE_ARGS &&
21 make &&
22 make prefix=$DESTDIR/usr install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $install/usr/bin $fs/usr
30 }