wok view wipe/receipt @ rev 7153

Made compcache to use linux-modules-headers. This way linux in wok doesn't need to be compiled.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Nov 06 19:22:12 2010 +0000 (2010-11-06)
parents
children fc1c0320fa79
line source
1 # SliTaz package receipt.
3 PACKAGE="wipe"
4 VERSION="2.3.0"
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 }