wok annotate wipe/receipt @ rev 20102

Add plsh & pypdf2
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Oct 09 13:07:28 2017 +0200 (2017-10-09)
parents ad480a4addbc
children 3105f866bc3e
rev   line source
jozee@4950 1 # SliTaz package receipt.
jozee@4950 2
jozee@4950 3 PACKAGE="wipe"
slaxemulator@7721 4 VERSION="2.3.1"
jozee@4950 5 CATEGORY="misc"
jozee@4950 6 MAINTAINER="jozee@slitaz.org"
pascal@15363 7 LICENSE="GPL2"
jozee@4950 8 SHORT_DESC="A file and block device delete/erase utility - a secure rm"
jozee@4950 9 WEB_SITE="http://wipe.sourceforge.net/"
jozee@4950 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
jozee@4950 11 WGET_URL="http://downloads.sourceforge.net/$PACKAGE/$TARBALL"
jozee@4950 12 TAGS="delete"
jozee@4950 13
pascal@15363 14 DEPENDS="glibc-base"
pascal@15363 15
jozee@4950 16 # Rules to configure and make the package.
pascal@15363 17 compile_rules()
pascal@15363 18 {
pascal@15363 19 cd $src
pascal@15363 20 ./configure --prefix=/usr $CONFIGURE_ARGS &&
pascal@15363 21 make &&
pascal@15363 22 make prefix=$DESTDIR/usr install
jozee@4950 23 }
jozee@4950 24
jozee@4950 25 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@4950 26 genpkg_rules()
jozee@4950 27 {
jozee@4950 28 mkdir -p $fs/usr
pascal@15363 29 cp -a $install/usr/bin $fs/usr
jozee@4950 30 }