wok annotate outguess/receipt @ rev 24171

updated outguess (0.2 -> 0.4)
author Hans-G?nter Theisgen
date Wed Dec 29 09:07:10 2021 +0100 (2021-12-29)
parents fe803e849a79
children fd3a440c0829
rev   line source
pascal@18097 1 # SliTaz package receipt.
pascal@18097 2
pascal@18097 3 PACKAGE="outguess"
Hans-G?nter@24171 4 VERSION="0.4"
pascal@18097 5 CATEGORY="security"
Hans-G?nter@24171 6 TAGS="steganography"
Hans-G?nter@24171 7 SHORT_DESC="Steganographic tool for JPEG and PNG images."
pascal@18097 8 MAINTAINER="pascal.bellard@slitaz.org"
pascal@18097 9 LICENSE="BSD"
Hans-G?nter@24171 10 WEB_SITE="https://github.com/resurrecting-open-source-projects/outguess"
Hans-G?nter@24171 11
pascal@18097 12 TARBALL="$PACKAGE-$VERSION.tar.gz"
Hans-G?nter@24171 13 WGET_URL="$WEB_SITE/archive/refs/tags/$VERSION.tar.gz"
Hans-G?nter@24171 14
Hans-G?nter@24171 15 BUILD_DEPENDS="automake jpeg-dev"
pascal@18097 16
pascal@18097 17 # Rules to configure and make the package.
pascal@18097 18 compile_rules()
pascal@18097 19 {
Hans-G?nter@24171 20 ./autogen.sh &&
Hans-G?nter@24171 21 ./configure \
Hans-G?nter@24171 22 --prefix=/usr \
Hans-G?nter@24171 23 --with-generic-jconfig \
pascal@18097 24 $CONFIGURE_ARGS &&
Hans-G?nter@24171 25 make &&
Hans-G?nter@24171 26 make install
pascal@18097 27 }
pascal@18097 28
pascal@18097 29 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@18097 30 genpkg_rules()
pascal@18097 31 {
Hans-G?nter@24171 32 cook_copy_folders bin
pascal@18097 33 }