# HG changeset patch # User Hans-G?nter Theisgen # Date 1648223088 -3600 # Node ID c467c00d68dd54bdbdd813e726a8e5f1008d9294 # Parent e743728fa1e7bd5044e7b82d1805ac123eff00b0 updated libvips and libvips-dev (8.9.1 -> 8.12.2) diff -r e743728fa1e7 -r c467c00d68dd libvips-dev/receipt --- a/libvips-dev/receipt Fri Mar 25 14:47:40 2022 +0100 +++ b/libvips-dev/receipt Fri Mar 25 16:44:48 2022 +0100 @@ -1,12 +1,12 @@ # SliTaz package receipt. PACKAGE="libvips-dev" -VERSION="8.9.1" +VERSION="8.12.2" CATEGORY="development" SHORT_DESC="An image processing library, development files." MAINTAINER="yuripourre@gmail.com" LICENSE="LGPL2.1" -WEB_SITE="https://libvips.github.io/libvips/" +WEB_SITE="https://www.libvips.org" DEPENDS="libvips pkg-config" WANTED="libvips" @@ -14,11 +14,5 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - mkdir -p $fs/usr/include - - cp -a $install/usr/lib/*.a $fs/usr/lib - cp -a $install/usr/lib/*.la $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/include $fs/usr + get_dev_files } diff -r e743728fa1e7 -r c467c00d68dd libvips-lang/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libvips-lang/receipt Fri Mar 25 16:44:48 2022 +0100 @@ -0,0 +1,17 @@ +# SliTaz package receipt. + +PACKAGE="libvips-lang" +VERSION="8.12.2" +CATEGORY="localization" +SHORT_DESC="An image processing library - localised messages." +MAINTAINER="maintainer@slitaz.org" +LICENSE="LGPL2.1" +WEB_SITE="https://www.libvips.org" + +WANTED="libvips" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cook_copy_folders locale +} diff -r e743728fa1e7 -r c467c00d68dd libvips/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libvips/description.txt Fri Mar 25 16:44:48 2022 +0100 @@ -0,0 +1,13 @@ +Libvips is a demand-driven, horizontally threaded image processing library. +Compared to similar libraries, libvips runs quickly and uses little memory. + +It has around 300 operations covering arithmetic, histograms, convolution, +morphological operations, frequency filtering, colour, resampling, statistics +and others. +It supports a large range of numeric formats, from 8-bit int to 128-bit complex. +Images can have any number of bands. +It supports a good range of image formats, including JPEG, TIFF, PNG, WebP, +FITS, Matlab, OpenEXR, PDF, SVG, HDR, PPM, CSV, GIF, Analyze, NIfTI, DeepZoom, +and OpenSlide. +It can also load images via ImageMagick or GraphicsMagick, letting it load +formats like DICOM. diff -r e743728fa1e7 -r c467c00d68dd libvips/receipt --- a/libvips/receipt Fri Mar 25 14:47:40 2022 +0100 +++ b/libvips/receipt Fri Mar 25 16:44:48 2022 +0100 @@ -1,16 +1,18 @@ # SliTaz package receipt. PACKAGE="libvips" -VERSION="8.9.1" +VERSION="8.12.2" CATEGORY="utilities" TAGS="image" SHORT_DESC="An image processing library." MAINTAINER="yuripourre@gmail.com" LICENSE="LGPL2.1" WEB_SITE="https://libvips.github.io/libvips/" +REPOLOGY="vips" +SUGGESTED="libvips-lang" TARBALL="vips-$VERSION.tar.gz" -WGET_URL="https://github.com/libvips/libvips/archive/v$VERSION.tar.gz" +WGET_URL="https://github.com/$PACKAGE/$PACKAGE/archive/v$VERSION.tar.gz" DEPENDS="fftw glib imagemagick jpeg lcms libexif liboil libpng openexr pango tiff zlib" @@ -32,7 +34,7 @@ --prefix=/usr \ --enable-gtk-doc=no && make && - make DESTDIR=$DESTDIR install + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. @@ -42,4 +44,6 @@ cp -a $install/usr/bin $fs/usr cp -a $install/usr/lib/*.so* $fs/usr/lib + cook_copy_folders bin + cook_copy_files *.so* }