# HG changeset patch # User Hans-G?nter Theisgen # Date 1584004634 -3600 # Node ID 8b0034a7d8ca0c0c508c6e923e5a691f464d4767 # Parent fa7a5e40934a335be0dc4e04e27242b6a5a55a6c updated libsixel and libsixel-dev (1.8.2 -> 1.8.6) diff -r fa7a5e40934a -r 8b0034a7d8ca libsixel-dev/receipt --- a/libsixel-dev/receipt Thu Mar 12 09:17:16 2020 +0100 +++ b/libsixel-dev/receipt Thu Mar 12 10:17:14 2020 +0100 @@ -1,21 +1,22 @@ # SliTaz package receipt. PACKAGE="libsixel-dev" -VERSION="1.8.2" +VERSION="1.8.6" CATEGORY="development" -SHORT_DESC="A SIXEL encoder/decoder implementation derived from kmiya's sixel, development files" +SHORT_DESC="A SIXEL encoder and decoder implementation derived from kmiya's sixel, development files." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="MIT" WEB_SITE="https://github.com/saitoha/libsixel" -WANTED="libsixel" DEPENDS="libsixel pkg-config" +WANTED="libsixel" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib/*a $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib + + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/*a $fs/usr/lib + cp -a $install/usr/lib/pkgconfig $fs/usr/lib } diff -r fa7a5e40934a -r 8b0034a7d8ca libsixel/receipt --- a/libsixel/receipt Thu Mar 12 09:17:16 2020 +0100 +++ b/libsixel/receipt Thu Mar 12 10:17:14 2020 +0100 @@ -1,13 +1,14 @@ # SliTaz package receipt. PACKAGE="libsixel" -VERSION="1.8.2" +VERSION="1.8.6" CATEGORY="graphics" -SHORT_DESC="A SIXEL encoder/decoder implementation derived from kmiya's sixel" +SHORT_DESC="A SIXEL encoder and decoder implementation derived from kmiya's sixel." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="MIT" +WEB_SITE="https://github.com/saitoha/libsixel" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="https://github.com/saitoha/libsixel" WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz" BUILD_DEPENDS="python" @@ -15,7 +16,9 @@ # Rules to configure and make the package. compile_rules() { - ./configure --prefix=/usr --mandir=/usr/share/man \ + ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man \ $CONFIGURE_ARGS && make && make DESTDIR=$DESTDIR install @@ -25,6 +28,7 @@ genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/lib/*.so.* $fs/usr/lib + + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/lib/*.so.* $fs/usr/lib }