wok view libsixel/receipt @ rev 20674

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