void-packages/srcpkgs/pixman/template
q66 04cc60aff1 pixman: remove LTO disable for ppc32
now that we no longer use -mno-altivec, it should work; the
optimized paths will get compiled with -maltivec and the whole-lib
LTO pass will no longer complain about altivec code with -mno-altivec
2020-12-06 05:51:32 +01:00

38 lines
1.3 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
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"
}
}