wok rev 24829

updated libsixel and libsixel-dev (1.8.6 -> 1.10.3)
author Hans-G?nter Theisgen
date Wed Mar 23 17:37:29 2022 +0100 (2022-03-23)
parents 8ae9b0064b80
children 561f632dc77e
files libsixel-dev/receipt libsixel/description.txt libsixel/receipt
line diff
     1.1 --- a/libsixel-dev/receipt	Wed Mar 23 17:27:54 2022 +0100
     1.2 +++ b/libsixel-dev/receipt	Wed Mar 23 17:37:29 2022 +0100
     1.3 @@ -1,12 +1,12 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libsixel-dev"
     1.7 -VERSION="1.8.6"
     1.8 +VERSION="1.10.3"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="A SIXEL encoder and 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 +WEB_SITE="https://github.com/libsixel/libsixel"
    1.16  
    1.17  DEPENDS="libsixel pkg-config"
    1.18  WANTED="libsixel"
    1.19 @@ -14,9 +14,5 @@
    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 -
    1.25 -	cp -a $install/usr/include		$fs/usr
    1.26 -	cp -a $install/usr/lib/*a		$fs/usr/lib
    1.27 -	cp -a $install/usr/lib/pkgconfig	$fs/usr/lib
    1.28 +	get_dev_files
    1.29  }
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/libsixel/description.txt	Wed Mar 23 17:37:29 2022 +0100
     2.3 @@ -0,0 +1,7 @@
     2.4 +This package provides a C encoder and decoder implementation for DEC SIXEL graphics
     2.5 +in the libsixel.so shared library, and two converter programs, img2sixel and sixel2png.
     2.6 +
     2.7 +SIXEL is one of image formats for printer and terminal imaging introduced by
     2.8 +Digital Equipment Corp. (DEC).
     2.9 +Its data scheme is represented as a terminal-friendly escape sequence.
    2.10 +So if you want to view a SIXEL image file, all you have to do is "cat" it to your terminal.
     3.1 --- a/libsixel/receipt	Wed Mar 23 17:27:54 2022 +0100
     3.2 +++ b/libsixel/receipt	Wed Mar 23 17:37:29 2022 +0100
     3.3 @@ -1,17 +1,17 @@
     3.4  # SliTaz package receipt.
     3.5  
     3.6  PACKAGE="libsixel"
     3.7 -VERSION="1.8.6"
     3.8 +VERSION="1.10.3"
     3.9  CATEGORY="graphics"
    3.10  SHORT_DESC="A SIXEL encoder and decoder implementation derived from kmiya's sixel."
    3.11  MAINTAINER="pascal.bellard@slitaz.org"
    3.12  LICENSE="MIT"
    3.13 -WEB_SITE="https://github.com/saitoha/libsixel"
    3.14 +WEB_SITE="https://github.com/libsixel/libsixel"
    3.15  
    3.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    3.17  WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz"
    3.18  
    3.19 -BUILD_DEPENDS="python"
    3.20 +BUILD_DEPENDS="meson"
    3.21  
    3.22  current_version()
    3.23  {
    3.24 @@ -22,19 +22,15 @@
    3.25  # Rules to configure and make the package.
    3.26  compile_rules()
    3.27  {
    3.28 -	./configure			\
    3.29 -		--prefix=/usr		\
    3.30 -		--mandir=/usr/share/man \
    3.31 -		$CONFIGURE_ARGS &&
    3.32 -	make &&
    3.33 -	make DESTDIR=$DESTDIR install
    3.34 +	meson	_build		\
    3.35 +		--prefix=/usr  &&
    3.36 +	ninja	-C _build &&
    3.37 +	ninja	-C _build install
    3.38  }
    3.39  
    3.40  # Rules to gen a SliTaz package suitable for Tazpkg.
    3.41  genpkg_rules()
    3.42  {
    3.43 -	mkdir -p $fs/usr/lib
    3.44 -
    3.45 -	cp -a $install/usr/bin		$fs/usr
    3.46 -	cp -a $install/usr/lib/*.so.*	$fs/usr/lib
    3.47 +	cook_copy_folders	bin
    3.48 +	cook_copy_files		*.so*
    3.49  }