wok-next view stegdetect/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 d5aab818505e
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="stegdetect"
4 VERSION="0.6"
5 CATEGORY="security"
6 SHORT_DESC="Steganography detection tool"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="https://github.com/abeluck/stegdetect"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$WEB_SITE/$TARBALL"
14 compile_rules() {
15 sed -i '/static int debug/d' stegdetect.c
17 ./configure \
18 --prefix=/usr \
19 $CONFIGURE_ARGS &&
20 make || return 1
22 install -Dm755 stegdetect $install/usr/bin/stegdetect
23 install -Dm755 stegdeimage $install/usr/bin/stegdeimage
24 install -Dm755 stegcompare $install/usr/bin/stegcompare
25 install -Dm755 stegbreak $install/usr/bin/stegbreak
26 }
28 genpkg_rules() {
29 copy @std
30 TAGS="steganography"
31 }