Date: Wednesday, October 26, 2022 @ 17:51:15
Author: heftig
Revision: 1336497
archrelease: copy trunk to community-staging-x86_64
Added:
gala/repos/community-staging-x86_64/
gala/repos/community-staging-x86_64/PKGBUILD
(from rev 1336496, gala/trunk/PKGBUILD)
----------+
PKGBUILD | 68 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 68 insertions(+)
Copied: gala/repos/community-staging-x86_64/PKGBUILD (from rev 1336496,
gala/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2022-10-26 17:51:15 UTC (rev 1336497)
@@ -0,0 +1,68 @@
+# Maintainer: Maxime Gauduin <[email protected]>
+
+pkgname=gala
+pkgver=6.3.3
+pkgrel=2
+pkgdesc='The Pantheon Window Manager'
+arch=(x86_64)
+url=https://github.com/elementary/gala
+license=(GPL3)
+groups=(pantheon)
+depends=(
+ atk
+ bamf
+ cairo
+ gdk-pixbuf2
+ glib2
+ gnome-desktop
+ gtk3
+ json-glib
+ libcanberra
+ libdrm
+ libgee
+ libgexiv2
+ libgl
+ libgranite.so
+ libx11
+ libxcomposite
+ libxdamage
+ libxext
+ libxfixes
+ libxi
+ libxrandr
+ libxtst
+ mesa
+ mutter
+ pango
+ plank
+ wayland
+)
+makedepends=(
+ cmake
+ git
+ gnome-common
+ intltool
+ meson
+ vala
+)
+provides=(libgala.so)
+options=(debug)
+_tag=34f7c03779478f70e533e7cd44511782b0392901
+source=(git+https://github.com/elementary/gala.git#tag=${_tag})
+b2sums=(SKIP)
+
+pkgver() {
+ cd gala
+ git describe --tags
+}
+
+build() {
+ arch-meson gala build
+ meson compile -C build
+}
+
+package() {
+ meson install -C build --destdir "${pkgdir}"
+}
+
+# vim:set sw=2 sts=-1 et: