wok view outguess/receipt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (24 months ago)
parents 899d2183c9c6
children 7364ffdaaa60
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 current_version()
18 {
19 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
20 sed '/archive.*tar/!d;s|.*/v*\(.*\).tar.*|\1|;q'
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 export CFLAGS="$CFLAGS -std=gnu99"
28 ./autogen.sh &&
29 ./configure \
30 --prefix=/usr \
31 --with-generic-jconfig \
32 $CONFIGURE_ARGS &&
33 make &&
34 make install
35 }
37 # Rules to gen a SliTaz package suitable for Tazpkg.
38 genpkg_rules()
39 {
40 cook_copy_folders bin
41 }