Date: Monday, May 1, 2023 @ 22:32:37
Author: heftig
Revision: 1455783
archrelease: copy trunk to community-staging-x86_64
Added:
gala/repos/community-staging-x86_64/
gala/repos/community-staging-x86_64/PKGBUILD
(from rev 1455781, gala/trunk/PKGBUILD)
----------+
PKGBUILD | 67 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 67 insertions(+)
Copied: gala/repos/community-staging-x86_64/PKGBUILD (from rev 1455781,
gala/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2023-05-01 22:32:37 UTC (rev 1455783)
@@ -0,0 +1,67 @@
+# Maintainer: Maxime Gauduin <[email protected]>
+
+pkgname=gala
+pkgver=7.0.2
+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
+ mutter43
+ pango
+ plank
+ wayland
+)
+makedepends=(
+ cmake
+ git
+ gnome-common
+ intltool
+ meson
+ vala
+)
+provides=(libgala.so)
+_tag=c8b0fcbc4023dfecad451e630cb8c496c4525a9f
+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: