Date: Tuesday, October 18, 2022 @ 15:01:56
Author: andyrtr
Revision: 458368
archrelease: copy trunk to testing-x86_64
Added:
pixman/repos/testing-x86_64/
pixman/repos/testing-x86_64/PKGBUILD
(from rev 458367, pixman/trunk/PKGBUILD)
----------+
PKGBUILD | 40 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 40 insertions(+)
Copied: pixman/repos/testing-x86_64/PKGBUILD (from rev 458367,
pixman/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-10-18 15:01:56 UTC (rev 458368)
@@ -0,0 +1,40 @@
+# Maintainer: Andreas Radke <[email protected]>
+# Contributor: Jan de Groot <[email protected]>
+# Contributor: Alexander Baldeck <[email protected]>
+
+pkgname=pixman
+pkgver=0.42.0
+pkgrel=1
+pkgdesc="The pixel-manipulation library for X and cairo"
+arch=(x86_64)
+url="https://cgit.freedesktop.org/pixman/"
+license=('custom')
+depends=('glibc')
+makedepends=('meson' 'libpng')
+options=('debug')
+provides=('libpixman-1.so')
+source=(https://xorg.freedesktop.org/releases/individual/lib/${pkgname}-${pkgver}.tar.xz)
+sha512sums=('43d43d1aef9b8a6167098ab68ce2cfd8c0429c4825d40a4fb468b5b51dc1a2035f8bd1b70413e4ecd77deb469b5d558f42171b423e348d5ddd8604c466ffc7d9')
+#validpgpkeys=('') # Maarten Lankhorst <[email protected]>
+
+build() {
+ arch-meson $pkgbase-$pkgver build \
+ -D loongson-mmi=disabled \
+ -D vmx=disabled \
+ -D arm-simd=disabled \
+ -D neon=disabled \
+ -D a64-neon=disabled \
+ -D iwmmxt=disabled \
+ -D mips-dspr2=disabled \
+ -D gtk=disabled
+ ninja -C build
+}
+
+check() {
+ meson test -C build
+}
+
+package() {
+ DESTDIR="$pkgdir" meson install -C build
+ install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644
$pkgname-$pkgver/COPYING
+}