wok-next view advancecomp/receipt @ rev 21722

efivar: typo in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:31:46 2020 +0000 (2020-09-01)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="advancecomp"
4 VERSION="2.1"
5 COMMIT="ea4f30c"
6 CATEGORY="system-tools"
7 SHORT_DESC="Recompression utilities for .ZIP, .PNG, .MNG and .GZ"
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="http://www.advancemame.it/comp-readme"
12 TARBALL="$PACKAGE-${COMMIT:-$VERSION}.tar.gz"
13 WGET_URL="$GITHUB/amadvance/advancecomp/tarball/${COMMIT:-v$VERSION}"
14 TARBALL_SHA1="a00bc548ff72ff19edc12105b2f7a31158129c4b"
16 BUILD_DEPENDS="automake zlib-dev zlib-static"
17 SPLIT="$PACKAGE-static:static"
19 COPY_static="@std"
21 DEPENDS_std="zlib"
22 DEPENDS_static=" "
24 CAT_static="system-tools|static binary"
25 PROVIDE_static="advancecomp"
27 TAGS="compression archive"
29 compile_rules() {
30 ./autogen.sh &&
32 case "$SET" in
33 static)
34 ./configure \
35 LDFLAGS='-static' \
36 $CONFIGURE_ARGS;;
37 *)
38 ./configure $CONFIGURE_ARGS;;
39 esac &&
41 make &&
42 make install
43 }