wok diff libsixel/receipt @ 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 be6d6007394f
children 5ea0ce1cecc0
line diff
     1.1 --- a/libsixel/receipt	Fri Jan 11 16:32:25 2019 +0100
     1.2 +++ b/libsixel/receipt	Thu Mar 12 10:17:14 2020 +0100
     1.3 @@ -1,13 +1,14 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libsixel"
     1.7 -VERSION="1.8.2"
     1.8 +VERSION="1.8.6"
     1.9  CATEGORY="graphics"
    1.10 -SHORT_DESC="A SIXEL encoder/decoder implementation derived from kmiya's sixel"
    1.11 +SHORT_DESC="A SIXEL encoder and decoder implementation derived from kmiya's sixel."
    1.12  MAINTAINER="pascal.bellard@slitaz.org"
    1.13  LICENSE="MIT"
    1.14 +WEB_SITE="https://github.com/saitoha/libsixel"
    1.15 +
    1.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.17 -WEB_SITE="https://github.com/saitoha/libsixel"
    1.18  WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz"
    1.19  
    1.20  BUILD_DEPENDS="python"
    1.21 @@ -15,7 +16,9 @@
    1.22  # Rules to configure and make the package.
    1.23  compile_rules()
    1.24  {
    1.25 -	./configure --prefix=/usr --mandir=/usr/share/man \
    1.26 +	./configure			\
    1.27 +		--prefix=/usr		\
    1.28 +		--mandir=/usr/share/man \
    1.29  		$CONFIGURE_ARGS &&
    1.30  	make &&
    1.31  	make DESTDIR=$DESTDIR install
    1.32 @@ -25,6 +28,7 @@
    1.33  genpkg_rules()
    1.34  {
    1.35  	mkdir -p $fs/usr/lib
    1.36 -	cp -a $install/usr/bin $fs/usr
    1.37 -	cp -a $install/usr/lib/*.so.* $fs/usr/lib
    1.38 +
    1.39 +	cp -a $install/usr/bin		$fs/usr
    1.40 +	cp -a $install/usr/lib/*.so.*	$fs/usr/lib
    1.41  }