wok annotate stegdetect/receipt @ rev 18097

Add outguess & stegdetect
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu May 28 12:43:56 2015 +0200 (2015-05-28)
parents
children 8dd8bab3f0ca
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@18097 10 WEB_SITE="http://www.outguess.org/"
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 }