wok view stegdetect/receipt @ rev 22539

updated bird (2.0.3 -> 2.0.7)
author Hans-G?nter Theisgen
date Fri Jan 03 16:08:36 2020 +0100 (2020-01-03)
parents 31587c741a6f
children 34e801e0eb52
line source
1 # SliTaz package receipt.
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 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://github.com/abeluck/stegdetect"
11 WGET_URL="$WEB_SITE/$TARBALL"
12 TAGS="stenography"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 sed -i '/static int debug/d' stegdetect.c
18 ./configure --prefix=/usr \
19 $CONFIGURE_ARGS &&
20 make
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/bin
27 cp -a $src/stegdetect $src/stegdeimage $src/stegcompare \
28 $src/stegbreak $fs/usr/bin
29 }