45 lines
1.5 KiB
Bash
45 lines
1.5 KiB
Bash
# Template file for 'pixman'
|
|
pkgname=pixman
|
|
version=0.40.0
|
|
revision=1
|
|
build_style=meson
|
|
# gtk is only necessary for demos, disabled to avoid dependency loop
|
|
configure_args="-Dgtk=disabled -Dgnu-inline-asm=enabled -Diwmmxt=disabled"
|
|
hostmakedepends="pkg-config perl"
|
|
checkdepends="libpng-devel libgomp-devel"
|
|
short_desc="Library of low-level pixel manipulation routines"
|
|
maintainer="Érico Nogueira <ericonr@disroot.org>"
|
|
license="MIT"
|
|
homepage="http://pixman.org/"
|
|
distfiles="https://www.cairographics.org/releases/${pkgname}-${version}.tar.gz"
|
|
checksum=6d200dec3740d9ec4ec8d1180e25779c00bc749f94278c8b9021f5534db223fc
|
|
|
|
# set stacksize for musl: https://gitlab.gnome.org/GNOME/librsvg/-/issues/595
|
|
LDFLAGS="-Wl,-z,stack-size=2097152"
|
|
|
|
if [ "$XBPS_CHECK_PKGS" ]; then
|
|
# libpng and openmp are used only for testing; the make-blue-noise.c file isn't built
|
|
# https://gitlab.freedesktop.org/pixman/pixman/-/blob/9b49f4e08751885289333fed652bf5e0f45976b4/pixman/dither/make-blue-noise.c
|
|
configure_args+=" -Dlibpng=enabled -Dopenmp=enabled"
|
|
fi
|
|
|
|
# disable LTO on 32-bit ppc since our use of -mno-altivec
|
|
# conflicts with the ppc accelerated paths in the lto pass
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
ppc64*) ;;
|
|
ppc*) configure_args+=" -Db_lto=false" ;;
|
|
esac
|
|
|
|
post_install() {
|
|
vlicense COPYING LICENSE
|
|
}
|
|
|
|
pixman-devel_package() {
|
|
depends="pixman>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|