wok view outguess/receipt @ rev 24172

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