mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-19 20:46:41 +02:00
61 lines
1.3 KiB
Text
61 lines
1.3 KiB
Text
# Contributor: Sergei Lukin <sergej.lukin@gmail.com>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=lcms2
|
|
pkgver=2.16
|
|
pkgrel=0
|
|
pkgdesc="Color Management Engine"
|
|
url="https://www.littlecms.com"
|
|
arch="all"
|
|
license="MIT"
|
|
depends_dev="
|
|
$pkgname-plugins=$pkgver-r$pkgrel
|
|
libjpeg-turbo-dev
|
|
tiff-dev
|
|
zlib-dev
|
|
"
|
|
makedepends="$depends_dev meson"
|
|
subpackages="$pkgname-static $pkgname-dev $pkgname-doc $pkgname-utils $pkgname-plugins"
|
|
source="https://github.com/mm2/Little-CMS/releases/download/lcms$pkgver/lcms2-$pkgver.tar.gz"
|
|
|
|
# secfixes:
|
|
# 2.9-r1:
|
|
# - CVE-2018-16435
|
|
# 2.8-r1:
|
|
# - CVE-2016-10165
|
|
|
|
build() {
|
|
abuild-meson \
|
|
--default-library=both \
|
|
-Dfastfloat=true \
|
|
-Dthreaded=true \
|
|
-Dutils=true \
|
|
-Djpeg=enabled \
|
|
-Dtiff=enabled \
|
|
. output
|
|
meson compile -C output
|
|
}
|
|
|
|
check() {
|
|
meson test -t4 --no-rebuild -C output
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" meson install --no-rebuild -C output
|
|
}
|
|
|
|
utils() {
|
|
pkgdesc="Utility applications for lcms2"
|
|
|
|
amove usr/bin
|
|
}
|
|
|
|
plugins() {
|
|
pkgdesc="$pkgdesc (threaded + fast_float plugins)"
|
|
license="GPL-3.0-or-later"
|
|
|
|
amove usr/lib/liblcms2_*.so
|
|
}
|
|
|
|
sha512sums="
|
|
638dd6ad6787456c8145510d18b2d0727bd0a446a13ac2934aabc9531d1156eca2a2c0fd780a453823fbd35a1895f9d8de5dc4b3cab505459dd3f0535b4e837d lcms2-2.16.tar.gz
|
|
"
|