wok annotate stegdetect/receipt @ rev 22006

tar-lang: condition corrected
author Hans-G?nter Theisgen
date Fri Oct 18 17:47:01 2019 +0100 (2019-10-18)
parents 31587c741a6f
children 34e801e0eb52
rev   line source
pascal@18097 1 # SliTaz package receipt.
pascal@18097 2
pascal@18097 3 PACKAGE="stegdetect"
pascal@18097 4 VERSION="0.6"
pascal@18097 5 CATEGORY="security"
pascal@18097 6 SHORT_DESC="steganography detection tool."
pascal@18097 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@18097 8 LICENSE="BSD"
pascal@18097 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@20672 10 WEB_SITE="https://github.com/abeluck/stegdetect"
pascal@18097 11 WGET_URL="$WEB_SITE/$TARBALL"
pascal@18097 12 TAGS="stenography"
pascal@18097 13
pascal@18097 14 # Rules to configure and make the package.
pascal@18097 15 compile_rules()
pascal@18097 16 {
pascal@18097 17 sed -i '/static int debug/d' stegdetect.c
pascal@18097 18 ./configure --prefix=/usr \
pascal@18097 19 $CONFIGURE_ARGS &&
pascal@18097 20 make
pascal@18097 21 }
pascal@18097 22
pascal@18097 23 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@18097 24 genpkg_rules()
pascal@18097 25 {
pascal@18097 26 mkdir -p $fs/usr/bin
pascal@18097 27 cp -a $src/stegdetect $src/stegdeimage $src/stegcompare \
pascal@18097 28 $src/stegbreak $fs/usr/bin
pascal@18097 29 }