wok annotate outguess/receipt @ rev 25706

BootProg/boot32.asm: add int 21h services 02h, 09h, 25h, 35h
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jun 26 17:36:15 2024 +0000 (2 days ago)
parents 0b7b8e414545
children
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@25600 17 # What is the latest version available today?
pascal@24175 18 current_version()
pascal@24175 19 {
pascal@24175 20 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
pascal@25600 21 sed '/tag\//!d;s|.*tag/v*||;s|".*||;q'
pascal@24175 22 }
pascal@24175 23
pascal@18097 24 # Rules to configure and make the package.
pascal@18097 25 compile_rules()
pascal@18097 26 {
Hans-G?nter@24173 27 export CFLAGS="$CFLAGS -std=gnu99"
Hans-G?nter@24173 28
Hans-G?nter@24171 29 ./autogen.sh &&
Hans-G?nter@24171 30 ./configure \
Hans-G?nter@24171 31 --prefix=/usr \
Hans-G?nter@24171 32 --with-generic-jconfig \
pascal@18097 33 $CONFIGURE_ARGS &&
Hans-G?nter@24171 34 make &&
Hans-G?nter@24171 35 make install
pascal@18097 36 }
pascal@18097 37
pascal@18097 38 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@18097 39 genpkg_rules()
pascal@18097 40 {
Hans-G?nter@24171 41 cook_copy_folders bin
pascal@18097 42 }