wok view outguess/receipt @ rev 25682

Up libqcow (20240308)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Mar 24 18:25:46 2024 +0000 (2 months ago)
parents 0b7b8e414545
children
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 # What is the latest version available today?
18 current_version()
19 {
20 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
21 sed '/tag\//!d;s|.*tag/v*||;s|".*||;q'
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 export CFLAGS="$CFLAGS -std=gnu99"
29 ./autogen.sh &&
30 ./configure \
31 --prefix=/usr \
32 --with-generic-jconfig \
33 $CONFIGURE_ARGS &&
34 make &&
35 make install
36 }
38 # Rules to gen a SliTaz package suitable for Tazpkg.
39 genpkg_rules()
40 {
41 cook_copy_folders bin
42 }