wok 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 | fa7a5e40934a |
children | 09c1c92bad93 |
files | libsixel-dev/receipt libsixel/receipt |
line diff
1.1 --- a/libsixel-dev/receipt Thu Mar 12 09:17:16 2020 +0100 1.2 +++ b/libsixel-dev/receipt Thu Mar 12 10:17:14 2020 +0100 1.3 @@ -1,21 +1,22 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libsixel-dev" 1.7 -VERSION="1.8.2" 1.8 +VERSION="1.8.6" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="A SIXEL encoder/decoder implementation derived from kmiya's sixel, development files" 1.11 +SHORT_DESC="A SIXEL encoder and decoder implementation derived from kmiya's sixel, development files." 1.12 MAINTAINER="pascal.bellard@slitaz.org" 1.13 LICENSE="MIT" 1.14 WEB_SITE="https://github.com/saitoha/libsixel" 1.15 -WANTED="libsixel" 1.16 1.17 DEPENDS="libsixel pkg-config" 1.18 +WANTED="libsixel" 1.19 1.20 # Rules to gen a SliTaz package suitable for Tazpkg. 1.21 genpkg_rules() 1.22 { 1.23 mkdir -p $fs/usr/lib 1.24 - cp -a $install/usr/include $fs/usr 1.25 - cp -a $install/usr/lib/*a $fs/usr/lib 1.26 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.27 + 1.28 + cp -a $install/usr/include $fs/usr 1.29 + cp -a $install/usr/lib/*a $fs/usr/lib 1.30 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.31 }
2.1 --- a/libsixel/receipt Thu Mar 12 09:17:16 2020 +0100 2.2 +++ b/libsixel/receipt Thu Mar 12 10:17:14 2020 +0100 2.3 @@ -1,13 +1,14 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="libsixel" 2.7 -VERSION="1.8.2" 2.8 +VERSION="1.8.6" 2.9 CATEGORY="graphics" 2.10 -SHORT_DESC="A SIXEL encoder/decoder implementation derived from kmiya's sixel" 2.11 +SHORT_DESC="A SIXEL encoder and decoder implementation derived from kmiya's sixel." 2.12 MAINTAINER="pascal.bellard@slitaz.org" 2.13 LICENSE="MIT" 2.14 +WEB_SITE="https://github.com/saitoha/libsixel" 2.15 + 2.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.17 -WEB_SITE="https://github.com/saitoha/libsixel" 2.18 WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz" 2.19 2.20 BUILD_DEPENDS="python" 2.21 @@ -15,7 +16,9 @@ 2.22 # Rules to configure and make the package. 2.23 compile_rules() 2.24 { 2.25 - ./configure --prefix=/usr --mandir=/usr/share/man \ 2.26 + ./configure \ 2.27 + --prefix=/usr \ 2.28 + --mandir=/usr/share/man \ 2.29 $CONFIGURE_ARGS && 2.30 make && 2.31 make DESTDIR=$DESTDIR install 2.32 @@ -25,6 +28,7 @@ 2.33 genpkg_rules() 2.34 { 2.35 mkdir -p $fs/usr/lib 2.36 - cp -a $install/usr/bin $fs/usr 2.37 - cp -a $install/usr/lib/*.so.* $fs/usr/lib 2.38 + 2.39 + cp -a $install/usr/bin $fs/usr 2.40 + cp -a $install/usr/lib/*.so.* $fs/usr/lib 2.41 }