wok annotate libsixel/receipt @ rev 21975

updated st (0.5 -> 0.8.2)
author Hans-G?nter Theisgen
date Fri Oct 11 14:31:25 2019 +0100 (2019-10-11)
parents
children 8b0034a7d8ca
rev   line source
pascal@20644 1 # SliTaz package receipt.
pascal@20644 2
pascal@20644 3 PACKAGE="libsixel"
pascal@20644 4 VERSION="1.8.2"
pascal@20644 5 CATEGORY="graphics"
pascal@20644 6 SHORT_DESC="A SIXEL encoder/decoder implementation derived from kmiya's sixel"
pascal@20644 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@20644 8 LICENSE="MIT"
pascal@20644 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@20644 10 WEB_SITE="https://github.com/saitoha/libsixel"
pascal@20644 11 WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz"
pascal@20644 12
pascal@20644 13 BUILD_DEPENDS="python"
pascal@20644 14
pascal@20644 15 # Rules to configure and make the package.
pascal@20644 16 compile_rules()
pascal@20644 17 {
pascal@20644 18 ./configure --prefix=/usr --mandir=/usr/share/man \
pascal@20644 19 $CONFIGURE_ARGS &&
pascal@20644 20 make &&
pascal@20644 21 make DESTDIR=$DESTDIR install
pascal@20644 22 }
pascal@20644 23
pascal@20644 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@20644 25 genpkg_rules()
pascal@20644 26 {
pascal@20644 27 mkdir -p $fs/usr/lib
pascal@20644 28 cp -a $install/usr/bin $fs/usr
pascal@20644 29 cp -a $install/usr/lib/*.so.* $fs/usr/lib
pascal@20644 30 }