wok view outguess/receipt @ rev 24173

updated outguess again (0.2 -> 0.4)
author Hans-G?nter Theisgen
date Wed Dec 29 09:24:42 2021 +0100 (2021-12-29)
parents fd3a440c0829
children 0b7b8e414545
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 export CFLAGS="$CFLAGS -std=gnu99"
22 ./autogen.sh &&
23 ./configure \
24 --prefix=/usr \
25 --with-generic-jconfig \
26 $CONFIGURE_ARGS &&
27 make &&
28 make install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 cook_copy_folders bin
35 }