wok-next view scrub/receipt @ rev 21288
update: expat 2.2.6 (2018) -> 2.2.9 (security fixes: CVE-2019-15903, CVE-2018-20843; ...)
author | Erkan Yilmaz <erkan@slitaz.org> |
---|---|
date | Sun Dec 08 11:14:03 2019 +0000 (2019-12-08) |
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 }