wok-next diff scrub/receipt @ rev 21727
created recipe for vbindiff
author | Hans-G?nter Theisgen |
---|---|
date | Sat Nov 21 14:32:44 2020 +0100 (2020-11-21) |
parents | 7506b35e1c6f |
children |
line diff
1.1 --- a/scrub/receipt Mon Aug 13 00:47:17 2018 +0300 1.2 +++ b/scrub/receipt Sat Nov 21 14:32:44 2020 +0100 1.3 @@ -3,32 +3,26 @@ 1.4 PACKAGE="scrub" 1.5 VERSION="2.4" 1.6 CATEGORY="security" 1.7 -SHORT_DESC="Iteratively writes patterns on files or disk devices to make retreiving the data more difficult." 1.8 -MAINTAINER="slaxemulator@gmail.com" 1.9 +SHORT_DESC="Iteratively writes patterns on files or disk devices to make retreiving the data more difficult" 1.10 +MAINTAINER="devel@slitaz.org" 1.11 LICENSE="GPL2" 1.12 TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.13 WEB_SITE="https://github.com/chaos/scrub" 1.14 WGET_URL="http://diskscrub.googlecode.com/files/$TARBALL" # FIXME 1.15 1.16 -DEPENDS="" 1.17 BUILD_DEPENDS="perl" 1.18 1.19 -# Rules to configure and make the package. 1.20 -compile_rules() 1.21 -{ 1.22 - cd $src 1.23 +compile_rules() { 1.24 ./configure \ 1.25 --prefix=/usr \ 1.26 --infodir=/usr/share/info \ 1.27 --mandir=/usr/share/man \ 1.28 $CONFIGURE_ARGS && 1.29 - make && make DESTDIR=$DESTDIR install 1.30 + make && 1.31 + make DESTDIR=$install install 1.32 } 1.33 1.34 -# Rules to gen a SliTaz package suitable for Tazpkg. 1.35 -genpkg_rules() 1.36 -{ 1.37 +genpkg_rules() { 1.38 mkdir -p $fs/usr 1.39 cp -a $install/usr/bin $fs/usr 1.40 } 1.41 -