mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-18 15:12:02 +01:00
46 lines
1.2 KiB
Plaintext
46 lines
1.2 KiB
Plaintext
# Contributor: Will Jordan <will.jordan@gmail.com>
|
|
# Maintainer: Will Jordan <will.jordan@gmail.com>
|
|
pkgname=vips
|
|
pkgver=8.8.0
|
|
pkgrel=0
|
|
pkgdesc="A fast image processing library with low memory needs"
|
|
url="http://www.vips.ecs.soton.ac.uk/"
|
|
arch="all !s390x"
|
|
license="LGPL-2.1-or-later"
|
|
makedepends="expat-dev fftw-dev giflib-dev glib-dev lcms2-dev
|
|
libexif-dev libjpeg-turbo-dev libpng-dev libwebp-dev
|
|
orc-dev tiff-dev"
|
|
checkdepends="bc"
|
|
subpackages="$pkgname-dev $pkgname-doc $pkgname-lang $pkgname-tools"
|
|
source="https://github.com/libvips/libvips/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz"
|
|
|
|
build() {
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--enable-debug=no \
|
|
--without-gsf \
|
|
--disable-static \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--docdir=/usr/share/doc
|
|
make
|
|
}
|
|
|
|
check() {
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
tools() {
|
|
pkgdesc="Command-line tools for $pkgname"
|
|
mkdir -p "$subpkgdir"/usr/
|
|
mv "$pkgdir"/usr/bin "$subpkgdir"/usr/
|
|
}
|
|
|
|
sha512sums="2058558bc75a7854121c9f50e2fb3424f397a221c31eb30abd297d12bc3d5b60662ddf213d68cc801318c5ff90f275b9ed74e8e8a23f6501cc6c70bf7431858e vips-8.8.0.tar.gz"
|