# HG changeset patch # User Pascal Bellard # Date 1432809836 -7200 # Node ID 31587c741a6f46397a2c9dac5164abf7e7e2c9ee # Parent 4ec7886bf6d2bfb75ef76a5ebc3c2aafff0ff4fa Add outguess & stegdetect diff -r 4ec7886bf6d2 -r 31587c741a6f outguess/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/outguess/receipt Thu May 28 12:43:56 2015 +0200 @@ -0,0 +1,27 @@ +# SliTaz package receipt. + +PACKAGE="outguess" +VERSION="0.2" +CATEGORY="security" +SHORT_DESC="steganographic tool for JPEG and PNG images." +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="BSD" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://www.outguess.org/" +WGET_URL="$WEB_SITE/$TARBALL" +TAGS="stenography" + +# Rules to configure and make the package. +compile_rules() +{ + ./configure --prefix=/usr \ + $CONFIGURE_ARGS && + make +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/bin + cp -a $src/outguess $fs/usr/bin +} diff -r 4ec7886bf6d2 -r 31587c741a6f stegdetect/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/stegdetect/receipt Thu May 28 12:43:56 2015 +0200 @@ -0,0 +1,29 @@ +# SliTaz package receipt. + +PACKAGE="stegdetect" +VERSION="0.6" +CATEGORY="security" +SHORT_DESC="steganography detection tool." +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="BSD" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://www.outguess.org/" +WGET_URL="$WEB_SITE/$TARBALL" +TAGS="stenography" + +# Rules to configure and make the package. +compile_rules() +{ + sed -i '/static int debug/d' stegdetect.c + ./configure --prefix=/usr \ + $CONFIGURE_ARGS && + make +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/bin + cp -a $src/stegdetect $src/stegdeimage $src/stegcompare \ + $src/stegbreak $fs/usr/bin +}