wok annotate advancecomp/receipt @ rev 19494

linld: cooker doc link
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Nov 14 08:55:24 2016 +0100 (2016-11-14)
parents 45507bfb2b0d
children 5d404602443f
rev   line source
pascal@4524 1 # SliTaz package receipt.
pascal@4524 2
pascal@4524 3 PACKAGE="advancecomp"
pascal@18361 4 VERSION="1.20"
pascal@4524 5 CATEGORY="system-tools"
pascal@4524 6 SHORT_DESC="Recompression utilities for .ZIP, .PNG, .MNG and .GZ"
pascal@4524 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15362 8 LICENSE="GPL2"
al@19275 9 WEB_SITE="http://advancemame.sourceforge.net/comp-readme.html"
pascal@4524 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@18361 11 WGET_URL="https://github.com/amadvance/advancecomp/releases/download/v$VERSION/$TARBALL"
pascal@15362 12 TAGS="compression archive"
pascal@15362 13
pascal@4524 14 DEPENDS="gcc-lib-base zlib"
pascal@18361 15 BUILD_DEPENDS="zlib-dev wget"
pascal@4524 16
pascal@4524 17 # Rules to configure and make the package.
pascal@4524 18 compile_rules()
pascal@4524 19 {
al@19275 20 ./configure \
al@19275 21 --prefix=/usr \
al@19275 22 --infodir=/usr/share/info \
pascal@18361 23 --mandir=/usr/share/man \
pascal@18361 24 $CONFIGURE_ARGS &&
pascal@4524 25 make &&
pascal@15362 26 make DESTDIR=$DESTDIR install
pascal@4524 27 }
pascal@4524 28
pascal@4524 29 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@4524 30 genpkg_rules()
pascal@4524 31 {
pascal@4524 32 mkdir -p $fs/usr
pascal@15362 33 cp -a $install/usr/bin $fs/usr
pascal@4524 34 }