forked from ports/compat-32
25 lines
593 B
Plaintext
25 lines
593 B
Plaintext
# Description: Pixel manipulation library
|
|
# URL: https://xorg.freedesktop.org
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
|
# Depends on: xorg-libpixman
|
|
|
|
name=xorg-libpixman-32
|
|
version=0.43.4
|
|
release=1
|
|
source=(https://www.x.org/releases/individual/lib/pixman-$version.tar.xz)
|
|
|
|
build() {
|
|
meson setup pixman-$version build \
|
|
--prefix=/usr \
|
|
--libdir=/usr/lib32 \
|
|
--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
|
|
|
|
rm -r $PKG/usr/include
|
|
}
|