opt/lcms2/Pkgfile

26 lines
642 B
Plaintext
Raw Normal View History

# Description: Little CMS intends to be an small-footprint color management engine
2021-02-15 15:23:35 +01:00
# URL: http://www.littlecms.com/
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: libtiff
name=lcms2
2023-12-04 10:23:57 +01:00
version=2.16
2020-06-01 13:50:02 +02:00
release=1
2022-02-11 16:35:42 +01:00
source=(http://downloads.sourceforge.net/project/lcms/lcms/${version:0:4}/$name-$version.tar.gz)
build() {
echo 'install_man(psicc_man)' >> \
$name-$version/utils/psicc/meson.build
meson setup build $name-$version \
--prefix=/usr \
--buildtype=plain \
--wrap-mode nodownload \
-D b_lto=true \
2023-12-04 10:23:57 +01:00
-D b_pie=true \
-D utils=true
meson compile -C build -j ${JOBS:-1}
DESTDIR=$PKG meson install -C build
}