wok annotate libsixel/receipt @ rev 23834
Up alsa-lib (1.2.2), apache-ant (1.10.8), apache (2.4.43), lcms2 (2.10), libexit (0.6.22)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Jun 01 09:10:42 2020 +0000 (2020-06-01) |
parents | be6d6007394f |
children | 5ea0ce1cecc0 |
rev | line source |
---|---|
pascal@20644 | 1 # SliTaz package receipt. |
pascal@20644 | 2 |
pascal@20644 | 3 PACKAGE="libsixel" |
Hans-G?nter@23102 | 4 VERSION="1.8.6" |
pascal@20644 | 5 CATEGORY="graphics" |
Hans-G?nter@23102 | 6 SHORT_DESC="A SIXEL encoder and decoder implementation derived from kmiya's sixel." |
pascal@20644 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@20644 | 8 LICENSE="MIT" |
Hans-G?nter@23102 | 9 WEB_SITE="https://github.com/saitoha/libsixel" |
Hans-G?nter@23102 | 10 |
pascal@20644 | 11 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@20644 | 12 WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz" |
pascal@20644 | 13 |
pascal@20644 | 14 BUILD_DEPENDS="python" |
pascal@20644 | 15 |
pascal@20644 | 16 # Rules to configure and make the package. |
pascal@20644 | 17 compile_rules() |
pascal@20644 | 18 { |
Hans-G?nter@23102 | 19 ./configure \ |
Hans-G?nter@23102 | 20 --prefix=/usr \ |
Hans-G?nter@23102 | 21 --mandir=/usr/share/man \ |
pascal@20644 | 22 $CONFIGURE_ARGS && |
pascal@20644 | 23 make && |
pascal@20644 | 24 make DESTDIR=$DESTDIR install |
pascal@20644 | 25 } |
pascal@20644 | 26 |
pascal@20644 | 27 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@20644 | 28 genpkg_rules() |
pascal@20644 | 29 { |
pascal@20644 | 30 mkdir -p $fs/usr/lib |
Hans-G?nter@23102 | 31 |
Hans-G?nter@23102 | 32 cp -a $install/usr/bin $fs/usr |
Hans-G?nter@23102 | 33 cp -a $install/usr/lib/*.so.* $fs/usr/lib |
pascal@20644 | 34 } |