Date: Wednesday, January 26, 2022 @ 04:09:45
  Author: ainola
Revision: 1115620

archrelease: copy trunk to community-staging-x86_64

Added:
  gtk-layer-shell/repos/community-staging-x86_64/
  gtk-layer-shell/repos/community-staging-x86_64/PKGBUILD
    (from rev 1115619, gtk-layer-shell/trunk/PKGBUILD)

----------+
 PKGBUILD |   42 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 42 insertions(+)

Copied: gtk-layer-shell/repos/community-staging-x86_64/PKGBUILD (from rev 
1115619, gtk-layer-shell/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD                           (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-01-26 04:09:45 UTC (rev 1115620)
@@ -0,0 +1,42 @@
+# Maintainer: Brett Cornwall <[email protected]>
+# Contributor: Adrian Perez de Castro <[email protected]>
+
+pkgdesc='Library to create Wayland desktop components using the Layer Shell 
protocol'
+pkgname=gtk-layer-shell
+pkgver=0.7.0
+pkgrel=1
+arch=(x86_64)
+license=(LGPL3)
+url="https://github.com/wmww/gtk-layer-shell";
+depends=(
+    "gtk3"
+    "wayland"
+)
+makedepends=(
+    "gtk-doc"
+    "gobject-introspection"
+    "meson"
+    "ninja"
+)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/wmww/gtk-layer-shell/archive/v$pkgver.tar.gz";)
+sha512sums=('97463b4bd90318e95576e3f4b05c0acae401b8103b389cb9a0dc7716871d8d8285595ddda76419883c98c6f00fcd4ffdfd9dba48385cb8a6edcbdc7f202e2818')
+
+build() {
+    meson --prefix=/usr \
+          --wrap-mode=nofallback \
+          --buildtype=plain \
+          -Dtests=true \
+          -Ddocs=true \
+          -Dintrospection=true \
+          "$pkgname-$pkgver" \
+          build
+    ninja -C build
+}
+
+check() {
+    ninja -C build test
+}
+
+package() {
+    DESTDIR="$pkgdir" ninja -C build install
+}

Reply via email to