wok annotate outguess/receipt @ rev 22805

updated gawk (4.2.1 -> 5.0.1)
author Hans-G?nter Theisgen
date Tue Jan 28 10:03:39 2020 +0100 (2020-01-28)
parents 8dd8bab3f0ca
children 2eb65c841836
rev   line source
pascal@18097 1 # SliTaz package receipt.
pascal@18097 2
pascal@18097 3 PACKAGE="outguess"
pascal@18097 4 VERSION="0.2"
pascal@18097 5 CATEGORY="security"
pascal@18097 6 SHORT_DESC="steganographic tool for JPEG and PNG images."
pascal@18097 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@18097 8 LICENSE="BSD"
pascal@18097 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@22504 10 WEB_SITE="https://www.rbcafe.com/software/outguess/"
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 ./configure --prefix=/usr \
pascal@18097 18 $CONFIGURE_ARGS &&
pascal@18097 19 make
pascal@18097 20 }
pascal@18097 21
pascal@18097 22 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@18097 23 genpkg_rules()
pascal@18097 24 {
pascal@18097 25 mkdir -p $fs/usr/bin
pascal@18097 26 cp -a $src/outguess $fs/usr/bin
pascal@18097 27 }