wok-next annotate stegdetect/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents d5aab818505e
children
rev   line source
al@21020 1 # SliTaz package receipt v2.
pascal@18097 2
pascal@18097 3 PACKAGE="stegdetect"
pascal@18097 4 VERSION="0.6"
pascal@18097 5 CATEGORY="security"
al@21020 6 SHORT_DESC="Steganography detection tool"
pascal@18097 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@18097 8 LICENSE="BSD"
al@21020 9 WEB_SITE="https://github.com/abeluck/stegdetect"
al@21020 10
pascal@18097 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@18097 12 WGET_URL="$WEB_SITE/$TARBALL"
pascal@18097 13
al@21020 14 compile_rules() {
pascal@18097 15 sed -i '/static int debug/d' stegdetect.c
al@21020 16
al@21020 17 ./configure \
al@21020 18 --prefix=/usr \
pascal@18097 19 $CONFIGURE_ARGS &&
al@21020 20 make || return 1
al@21020 21
al@21020 22 install -Dm755 stegdetect $install/usr/bin/stegdetect
al@21020 23 install -Dm755 stegdeimage $install/usr/bin/stegdeimage
al@21020 24 install -Dm755 stegcompare $install/usr/bin/stegcompare
al@21020 25 install -Dm755 stegbreak $install/usr/bin/stegbreak
pascal@18097 26 }
pascal@18097 27
al@21020 28 genpkg_rules() {
al@21020 29 copy @std
al@21044 30 TAGS="steganography"
pascal@18097 31 }