2007-09-06 17:07:44 +02:00
|
|
|
# Description: Pixel manipulation library
|
2024-01-29 23:36:53 +01:00
|
|
|
# URL: https://xorg.freedesktop.org/wiki/
|
2012-07-16 01:28:18 +10:00
|
|
|
# Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
|
2007-09-06 17:07:44 +02:00
|
|
|
|
|
|
|
name=xorg-libpixman
|
2024-12-03 22:18:49 +01:00
|
|
|
version=0.44.2
|
2012-11-08 22:21:57 +01:00
|
|
|
release=1
|
2020-04-21 18:21:43 +02:00
|
|
|
source=(https://www.x.org/releases/individual/lib/pixman-$version.tar.xz)
|
2007-09-06 17:07:44 +02:00
|
|
|
|
|
|
|
build() {
|
2022-11-04 12:28:57 +01:00
|
|
|
meson setup pixman-$version build \
|
|
|
|
--prefix=/usr \
|
|
|
|
--buildtype=plain \
|
|
|
|
--wrap-mode nodownload \
|
|
|
|
-D b_lto=true \
|
|
|
|
-D b_pie=true \
|
|
|
|
-D tests=disabled
|
|
|
|
meson compile -C build -j ${JOBS:-1}
|
|
|
|
DESTDIR=$PKG meson install -C build
|
2007-09-06 17:07:44 +02:00
|
|
|
}
|