wok view libsixel/receipt @ rev 23102

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