diff options
Diffstat (limited to 'graphics/vips')
-rw-r--r-- | graphics/vips/README | 27 | ||||
-rw-r--r-- | graphics/vips/slack-desc | 18 | ||||
-rw-r--r-- | graphics/vips/vips.SlackBuild | 115 | ||||
-rw-r--r-- | graphics/vips/vips.info | 12 |
4 files changed, 98 insertions, 74 deletions
diff --git a/graphics/vips/README b/graphics/vips/README index d29d016e6b..cd2527620e 100644 --- a/graphics/vips/README +++ b/graphics/vips/README @@ -1,7 +1,20 @@ -VIPS is a free image processing system. It includes a range of -filters, arithmetic operations, colour processing, histograms, -and geometric transforms. It supports ten pixel formats, from 8-bit -unsigned int to 128-bit complex. As well as the usual JPEG, TIFF, -PNG and WebP images, it also supports scientific formats like FITS, -OpenEXR, Matlab, Analyze, PFM, Radiance, OpenSlide and DICOM (via -libMagick). +libvips is a demand-driven, horizontally threaded image processing +library. Compared to similar libraries, libvips runs quickly and uses +little memory. libvips is licensed under the LGPL-2.1-or-later. + +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 +types, 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, JPEG +2000, JPEG XL, TIFF, PNG, WebP, HEIC, AVIF, FITS, Matlab, OpenEXR, PDF, +SVG, HDR, PPM / PGM / PFM, CSV, GIF, Analyze, NIfTI, DeepZoom, and +OpenSlide. It can also load images via ImageMagick or GraphicsMagick, +letting it work with formats like DICOM. + +It comes with bindings for C, C++, and the command-line. + +To build HTML documentation use DOCS=yes. This requires gi-docgen. + +Optional dependencies are (autodetected): libspng, highway, matio, +libjxl and libheif. diff --git a/graphics/vips/slack-desc b/graphics/vips/slack-desc index a4f7090293..39592120dc 100644 --- a/graphics/vips/slack-desc +++ b/graphics/vips/slack-desc @@ -6,14 +6,14 @@ # customary to leave one space after the ':' except on otherwise blank lines. |-----handy-ruler------------------------------------------------------| -vips: vips (Free Image Processing System) +vips: vips (fast image processing library with low memory needs) +vips: +vips: libvips is a demand-driven, horizontally threaded image processing +vips: library. Compared to similar libraries, libvips runs quickly and uses +vips: little memory. +vips: +vips: Homepage: https://www.libvips.org/ +vips: +vips: vips: -vips: VIPS is a free image processing system. It includes a range of -vips: filters, arithmetic operations, colour processing, histograms, -vips: and geometric transforms. It supports ten pixel formats, from -vips: 8-bit unsigned int to 128-bit complex. As well as the usual JPEG, -vips: TIFF, PNG and WebP images, it also supports scientific formats like -vips: FITS, OpenEXR, Matlab, Analyze, PFM, Radiance, OpenSlide and DICOM -vips: (via libMagick). vips: -vips: http://www.vips.ecs.soton.ac.uk/index.php?title=VIPS diff --git a/graphics/vips/vips.SlackBuild b/graphics/vips/vips.SlackBuild index 8410f3685e..687f782832 100644 --- a/graphics/vips/vips.SlackBuild +++ b/graphics/vips/vips.SlackBuild @@ -1,10 +1,9 @@ #!/bin/bash -# -# Slackware Package Build Script for vips -# Build script by <DIO> igor29768 @ gmail.com -# Version 151119 -# -# http://www.vips.ecs.soton.ac.uk/index.php?title=VIPS + +# Slackware build script for vips + +# Copyright 2025 Vladislav 'fsLeg' Borisov, Moscow, Russia +# All rights reserved. # # Redistribution and use of this script, with or without modification, is # permitted provided that the following conditions are met: @@ -12,28 +11,21 @@ # 1. Redistributions of this script must retain the above copyright # notice, this list of conditions and the following disclaimer. # -# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO -# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; -# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR -# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -# 20240330 bkw: Modified by SlackBuilds.org: fix conflict with libjxl, -# by adding --without-libjxl to the configure args. This doesn't -# warrant a BUILD bump. - -# 20220222 bkw: Modified by SlackBuilds.org: fix build on 15.0, -# by upgrading to v8.12.2. +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. cd $(dirname $0) ; CWD=$(pwd) -PRGNAM="vips" -VERSION=${VERSION:-8.12.2} +PRGNAM=vips +VERSION=${VERSION:-8.17.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -64,6 +56,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +elif [ "$ARCH" = "aarch64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" else SLKCFLAGS="-O2" LIBDIRSUFFIX="" @@ -71,41 +66,57 @@ fi set -e -# 20220225 bkw: upstream changed the project name from vips to libvips. -SRCNAM=libvips - -rm -rf $TMP/$SRCNAM-$VERSION $PKG +rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP -tar xvf $CWD/$SRCNAM-$VERSION.tar.gz -cd $TMP/$SRCNAM-$VERSION +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.xz +cd $PRGNAM-$VERSION chown -R root:root . find -L . \ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ - -o -perm 511 \) -exec chmod 755 {} \+ -o \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \+ - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -sh autogen.sh \ - --without-libjxl \ - --prefix=/usr \ - --sysconfdir=/etc \ - --libdir=/usr/lib${LIBDIRSUFFIX} \ - --localstatedir=/var \ - --mandir=/usr/man \ - --enable-static=no \ - --build=$ARCH-slackware-linux - -make V=1 -make install-strip DESTDIR=$PKG -gzip -9 $PKG/usr/man/man*/* + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a AUTHORS COPYING NEWS THANKS ChangeLog README* $PKG/usr/doc/$PRGNAM-$VERSION +if [ "${DOCS:-no}" != "no" ]; then + DOCS=true +else + DOCS=false +fi -rm -f $PKG/usr/lib*/*.la +mkdir build +cd build + CFLAGS="$SLKCFLAGS" \ + CXXFLAGS="$SLKCFLAGS" \ + meson setup .. \ + --buildtype=release \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --localstatedir=/var \ + --mandir=/usr/man \ + --prefix=/usr \ + --sysconfdir=/etc \ + -Ddocs=$DOCS + meson compile + meson install --destdir=$PKG +cd .. + +find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +find $PKG/usr/man -type f -exec gzip -9 {} \; +for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + CITATION.cff CODE_OF_CONDUCT.md CONTRIBUTING.md ChangeLog LICENSE README.md \ + $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +if [ "${DOCS}" == "true" ]; then + mv $PKG/usr/share/doc/vips $PKG/usr/doc/$PRGNAM-$VERSION/html + rmdir $PKG/usr/share/doc +fi mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc diff --git a/graphics/vips/vips.info b/graphics/vips/vips.info index 376e7c3757..5652dbacd1 100644 --- a/graphics/vips/vips.info +++ b/graphics/vips/vips.info @@ -1,10 +1,10 @@ PRGNAM="vips" -VERSION="8.12.2" -HOMEPAGE="https://github.com/libvips/libvips" -DOWNLOAD="https://github.com/libvips/libvips/archive/v8.12.2/libvips-8.12.2.tar.gz" -MD5SUM="db209262e6c62952603b6ed4149c1e98" +VERSION="8.17.1" +HOMEPAGE="https://www.libvips.org/" +DOWNLOAD="https://github.com/libvips/libvips/releases/download/v8.17.1/vips-8.17.1.tar.xz" +MD5SUM="5c3bd1b6d15f43615ebe81591c3382ce" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="" -MAINTAINER="Igor" -EMAIL="igor29768@gmail.com" +MAINTAINER="Vladislav 'fsLeg' Borisov" +EMAIL="fsleg@t-rg.ws" |