wok rev 24848

updated libvips and libvips-dev (8.9.1 -> 8.12.2)
author Hans-G?nter Theisgen
date Fri Mar 25 16:44:48 2022 +0100 (2022-03-25)
parents e743728fa1e7
children 805b047c4159
files libvips-dev/receipt libvips-lang/receipt libvips/description.txt libvips/receipt
line diff
     1.1 --- a/libvips-dev/receipt	Fri Mar 25 14:47:40 2022 +0100
     1.2 +++ b/libvips-dev/receipt	Fri Mar 25 16:44:48 2022 +0100
     1.3 @@ -1,12 +1,12 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libvips-dev"
     1.7 -VERSION="8.9.1"
     1.8 +VERSION="8.12.2"
     1.9  CATEGORY="development"
    1.10  SHORT_DESC="An image processing library, development files."
    1.11  MAINTAINER="yuripourre@gmail.com"
    1.12  LICENSE="LGPL2.1"
    1.13 -WEB_SITE="https://libvips.github.io/libvips/"
    1.14 +WEB_SITE="https://www.libvips.org"
    1.15  
    1.16  DEPENDS="libvips pkg-config"
    1.17  WANTED="libvips"
    1.18 @@ -14,11 +14,5 @@
    1.19  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.20  genpkg_rules()
    1.21  {
    1.22 -	mkdir -p $fs/usr/lib
    1.23 -	mkdir -p $fs/usr/include
    1.24 -
    1.25 -	cp -a $install/usr/lib/*.a		$fs/usr/lib
    1.26 -	cp -a $install/usr/lib/*.la		$fs/usr/lib
    1.27 -	cp -a $install/usr/lib/pkgconfig	$fs/usr/lib
    1.28 -	cp -a $install/usr/include		$fs/usr
    1.29 +	get_dev_files
    1.30  }
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/libvips-lang/receipt	Fri Mar 25 16:44:48 2022 +0100
     2.3 @@ -0,0 +1,17 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="libvips-lang"
     2.7 +VERSION="8.12.2"
     2.8 +CATEGORY="localization"
     2.9 +SHORT_DESC="An image processing library - localised messages."
    2.10 +MAINTAINER="maintainer@slitaz.org"
    2.11 +LICENSE="LGPL2.1"
    2.12 +WEB_SITE="https://www.libvips.org"
    2.13 +
    2.14 +WANTED="libvips"
    2.15 +
    2.16 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.17 +genpkg_rules()
    2.18 +{
    2.19 +	cook_copy_folders	locale
    2.20 +}
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/libvips/description.txt	Fri Mar 25 16:44:48 2022 +0100
     3.3 @@ -0,0 +1,13 @@
     3.4 +Libvips is a demand-driven, horizontally threaded image processing library.
     3.5 +Compared to similar libraries, libvips runs quickly and uses little memory.
     3.6 +
     3.7 +It has around 300 operations covering arithmetic, histograms, convolution,
     3.8 +morphological operations, frequency filtering, colour, resampling, statistics
     3.9 +and others.
    3.10 +It supports a large range of numeric formats, from 8-bit int to 128-bit complex.
    3.11 +Images can have any number of bands.
    3.12 +It supports a good range of image formats, including JPEG, TIFF, PNG, WebP,
    3.13 +FITS, Matlab, OpenEXR, PDF, SVG, HDR, PPM, CSV, GIF, Analyze, NIfTI, DeepZoom,
    3.14 +and OpenSlide.
    3.15 +It can also load images via ImageMagick or GraphicsMagick, letting it load
    3.16 +formats like DICOM.
     4.1 --- a/libvips/receipt	Fri Mar 25 14:47:40 2022 +0100
     4.2 +++ b/libvips/receipt	Fri Mar 25 16:44:48 2022 +0100
     4.3 @@ -1,16 +1,18 @@
     4.4  # SliTaz package receipt.
     4.5  
     4.6  PACKAGE="libvips"
     4.7 -VERSION="8.9.1"
     4.8 +VERSION="8.12.2"
     4.9  CATEGORY="utilities"
    4.10  TAGS="image"
    4.11  SHORT_DESC="An image processing library."
    4.12  MAINTAINER="yuripourre@gmail.com"
    4.13  LICENSE="LGPL2.1"
    4.14  WEB_SITE="https://libvips.github.io/libvips/"
    4.15 +REPOLOGY="vips"
    4.16  
    4.17 +SUGGESTED="libvips-lang"
    4.18  TARBALL="vips-$VERSION.tar.gz"
    4.19 -WGET_URL="https://github.com/libvips/libvips/archive/v$VERSION.tar.gz"
    4.20 +WGET_URL="https://github.com/$PACKAGE/$PACKAGE/archive/v$VERSION.tar.gz"
    4.21  
    4.22  DEPENDS="fftw glib imagemagick jpeg lcms libexif liboil libpng 
    4.23  	openexr pango tiff zlib"
    4.24 @@ -32,7 +34,7 @@
    4.25  		--prefix=/usr		\
    4.26  		--enable-gtk-doc=no &&
    4.27  	make &&
    4.28 -	make DESTDIR=$DESTDIR install
    4.29 +	make install DESTDIR=$DESTDIR
    4.30  }
    4.31  
    4.32  # Rules to gen a SliTaz package suitable for Tazpkg.
    4.33 @@ -42,4 +44,6 @@
    4.34  
    4.35  	cp -a $install/usr/bin		$fs/usr
    4.36  	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    4.37 +	cook_copy_folders	bin
    4.38 +	cook_copy_files		*.so*
    4.39  }