# 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="https://github.com/abeluck/stegdetect" WGET_URL="https://fossies.org/linux/privat/old/$TARBALL" TAGS="stenography" # What is the latest version available today? current_version() { wget -O - $WEB_SITE/commits/master 2>/dev/null | \ sed '/Commits on/!d;s|.*on |"|;s|<.*|"|;q' | xargs date +%Y%m%d -d } # 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 }