wok-next view scrub/receipt @ rev 21722

efivar: typo in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:31:46 2020 +0000 (2020-09-01)
parents 7506b35e1c6f
children
line source
1 # SliTaz package receipt.
3 PACKAGE="scrub"
4 VERSION="2.4"
5 CATEGORY="security"
6 SHORT_DESC="Iteratively writes patterns on files or disk devices to make retreiving the data more difficult"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="https://github.com/chaos/scrub"
11 WGET_URL="http://diskscrub.googlecode.com/files/$TARBALL" # FIXME
13 BUILD_DEPENDS="perl"
15 compile_rules() {
16 ./configure \
17 --prefix=/usr \
18 --infodir=/usr/share/info \
19 --mandir=/usr/share/man \
20 $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$install install
23 }
25 genpkg_rules() {
26 mkdir -p $fs/usr
27 cp -a $install/usr/bin $fs/usr
28 }