Date: Wednesday, November 30, 2022 @ 18:06:44
Author: heftig
Revision: 462810
archrelease: copy trunk to testing-x86_64
Added:
wayland/repos/testing-x86_64/
wayland/repos/testing-x86_64/PKGBUILD
(from rev 462807, wayland/trunk/PKGBUILD)
wayland/repos/testing-x86_64/keys/
----------+
PKGBUILD | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 49 insertions(+)
Copied: wayland/repos/testing-x86_64/PKGBUILD (from rev 462807,
wayland/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-11-30 18:06:44 UTC (rev 462810)
@@ -0,0 +1,49 @@
+# Maintainer: Sébastien Luttringer <[email protected]>
+# Contributor: Tom Gundersen <[email protected]>
+# Contributor: Joel Teichroeb <[email protected]>
+
+pkgbase=wayland
+pkgname=(wayland wayland-docs)
+pkgver=1.21.0
+pkgrel=2
+pkgdesc='A computer display server protocol'
+arch=('x86_64')
+url='https://wayland.freedesktop.org/'
+license=('MIT')
+depends=('glibc' 'libffi' 'expat' 'libxml2' 'default-cursors')
+makedepends=('meson' 'libxslt' 'doxygen' 'xmlto' 'graphviz' 'docbook-xsl')
+options=('debug')
+validpgpkeys=('C7223EBE4EF66513B892598911A30156E0E67611' # Bryce Harrington
+ 'C0066D7DB8E9AC6844D728715E54498E697F11D7' # Derek Foreman
+ '34FF9526CFEF0E97A340E2E40FDE7BE0E88F5E48') # emersion
<[email protected]>
+source=("https://gitlab.freedesktop.org/wayland/wayland/-/releases/1.21.0/downloads/wayland-$pkgver.tar.xz"{,.sig})
+sha256sums=('6dc64d7fc16837a693a51cfdb2e568db538bfdc9f457d4656285bb9594ef11ac'
+ 'SKIP')
+
+build() {
+ arch-meson $pkgbase-$pkgver build
+ meson compile -C build
+}
+
+check() {
+ meson test -C build --print-errorlogs
+}
+
+package_wayland() {
+ provides=(libwayland-{client,cursor,egl,server}.so)
+
+ meson install -C build --destdir "$pkgdir"
+ mkdir -p docs/share
+ mv "$pkgdir"/usr/share/{doc,man} docs/share
+ install -Dm 644 $pkgbase-$pkgver/COPYING
"$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}
+
+package_wayland-docs() {
+ pkgdesc+=" (documentation)"
+ depends=()
+
+ mv docs "$pkgdir/usr"
+ install -Dm 644 $pkgbase-$pkgver/COPYING
"$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}
+
+# vim:set sw=2 sts=-1 et: