# SliTaz package receipt. PACKAGE="stegsnow" SOURCE="snow" VERSION="20130616" CATEGORY="security" SHORT_DESC="The Steganographic Nature Of Whitespace." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="Apache" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="https://www.darkside.com.au/snow" WGET_URL="$WEB_SITE/$TARBALL" TAGS="stenography" # What is the latest version available today? current_version() { wget -O - ${WGET_URL%/*} 2>/dev/null | \ sed "/$SOURCE-/!d;/tar/!d;s|.*$SOURCE-\\(.*\\).tar.*|\\1|" | sort -Vr | sed q } # Rules to configure and make the package. compile_rules() { make } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/bin cp -a $src/snow $fs/usr/bin/stegsnow }