Date: Monday, May 1, 2023 @ 22:32:37
Author: heftig
Revision: 1455782
archrelease: copy trunk to community-staging-x86_64
Added:
wingpanel/repos/community-staging-x86_64/
wingpanel/repos/community-staging-x86_64/PKGBUILD
(from rev 1455781, wingpanel/trunk/PKGBUILD)
----------+
PKGBUILD | 47 +++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 47 insertions(+)
Copied: wingpanel/repos/community-staging-x86_64/PKGBUILD (from rev 1455781,
wingpanel/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2023-05-01 22:32:37 UTC (rev 1455782)
@@ -0,0 +1,47 @@
+# Maintainer: Maxime Gauduin <[email protected]>
+
+pkgname=wingpanel
+pkgver=3.0.3
+pkgrel=3
+pkgdesc='The Pantheon Top Panel'
+arch=(x86_64)
+url=https://github.com/elementary/wingpanel
+license=(GPL3)
+groups=(pantheon)
+depends=(
+ glib2
+ gtk3
+ libgala.so
+ libgee
+ libgranite.so
+ mutter43
+ pantheon-notifications
+)
+makedepends=(
+ cmake
+ git
+ gala
+ meson
+ vala
+)
+provides=(libwingpanel-2.0.so)
+_tag=f8b98a59d4d5cecd13f1c1a71f4700aeb006cc21
+source=(git+https://github.com/elementary/wingpanel.git#tag=${_tag})
+b2sums=(SKIP)
+
+pkgver() {
+ cd wingpanel
+
+ git describe --tags
+}
+
+build() {
+ arch-meson wingpanel build
+ meson compile -C build
+}
+
+package() {
+ meson install -C build --destdir "${pkgdir}"
+}
+
+# vim:set sw=2 sts=-1 et: