wok annotate jp2a/receipt @ rev 23075

updated libical and libical-dev (3.0.4 -> 3.0.8)
author Hans-G?nter Theisgen
date Tue Mar 10 14:09:33 2020 +0100 (2020-03-10)
parents 72e35f3c7aa1
children 5ea0ce1cecc0
rev   line source
pascal@17526 1 # SliTaz package receipt.
pascal@17526 2
pascal@17526 3 PACKAGE="jp2a"
pascal@22926 4 VERSION="1.0.9"
pascal@17526 5 CATEGORY="graphics"
pascal@17526 6 SHORT_DESC="Converts JPG images to ASCII."
pascal@17526 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@17526 8 LICENSE="GPL2"
pascal@22926 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@22926 10 WEB_SITE="https://github.com/Talinx/jp2a"
pascal@22926 11 WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz"
pascal@17526 12
pascal@17526 13 DEPENDS="jpeg libcurl"
pascal@22926 14 BUILD_DEPENDS="jpeg-dev curl-dev libtool"
pascal@17526 15
pascal@17526 16 # Rules to configure and make the package.
pascal@17526 17 compile_rules()
pascal@17526 18 {
pascal@22926 19 ./autogen.sh
pascal@17526 20 ./configure --prefix=/usr \
pascal@17526 21 $CONFIGURE_ARGS &&
pascal@17526 22 make &&
pascal@17526 23 make DESTDIR=$DESTDIR install
pascal@17526 24 }
pascal@17526 25
pascal@17526 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@17526 27 genpkg_rules()
pascal@17526 28 {
pascal@17526 29 mkdir -p $fs/usr
pascal@17526 30 cp -a $install/usr/bin $fs/usr
pascal@17526 31 }