wok-next annotate advancecomp/receipt @ rev 21678

updated getmail (4.41.0 -> 5.14)
author Hans-G?nter Theisgen
date Mon Jun 29 13:44:08 2020 +0100 (2020-06-29)
parents d5aab818505e
children
rev   line source
al@19785 1 # SliTaz package receipt v2.
pascal@4524 2
pascal@4524 3 PACKAGE="advancecomp"
al@20443 4 VERSION="2.1"
al@20443 5 COMMIT="ea4f30c"
pascal@4524 6 CATEGORY="system-tools"
pascal@4524 7 SHORT_DESC="Recompression utilities for .ZIP, .PNG, .MNG and .GZ"
pascal@4524 8 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15362 9 LICENSE="GPL2"
al@19556 10 WEB_SITE="http://www.advancemame.it/comp-readme"
pascal@15362 11
al@19607 12 TARBALL="$PACKAGE-${COMMIT:-$VERSION}.tar.gz"
al@19607 13 WGET_URL="$GITHUB/amadvance/advancecomp/tarball/${COMMIT:-v$VERSION}"
al@21087 14 TARBALL_SHA1="a00bc548ff72ff19edc12105b2f7a31158129c4b"
al@19607 15
al@21087 16 BUILD_DEPENDS="automake zlib-dev zlib-static"
al@21020 17 SPLIT="$PACKAGE-static:static"
pascal@4524 18
al@21087 19 COPY_static="@std"
al@21087 20
al@21087 21 DEPENDS_std="zlib"
al@21087 22 DEPENDS_static=" "
al@21087 23
al@21087 24 CAT_static="system-tools|static binary"
al@21087 25 PROVIDE_static="advancecomp"
al@21087 26
al@21087 27 TAGS="compression archive"
al@21087 28
al@20443 29 compile_rules() {
al@19556 30 ./autogen.sh &&
al@19785 31
al@20443 32 case "$SET" in
al@20443 33 static)
al@20443 34 ./configure \
al@20443 35 LDFLAGS='-static' \
al@20443 36 $CONFIGURE_ARGS;;
al@20443 37 *)
al@20443 38 ./configure $CONFIGURE_ARGS;;
al@20443 39 esac &&
al@19785 40
al@21020 41 make &&
al@21020 42 make install
pascal@4524 43 }