wok annotate libsixel/receipt @ rev 23179
updated mgetty and mgetty-voicetools (1.1.37 -> 1.2.1)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Mar 19 13:45:58 2020 +0100 (2020-03-19) |
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 } |