Date: Monday, May 1, 2023 @ 18:27:09
Author: heftig
Revision: 476170
archrelease: copy trunk to gnome-unstable-x86_64
Added:
polari/repos/gnome-unstable-x86_64/
polari/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 476169, polari/trunk/PKGBUILD)
----------+
PKGBUILD | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 54 insertions(+)
Copied: polari/repos/gnome-unstable-x86_64/PKGBUILD (from rev 476169,
polari/trunk/PKGBUILD)
===================================================================
--- gnome-unstable-x86_64/PKGBUILD (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD 2023-05-01 18:27:09 UTC (rev 476170)
@@ -0,0 +1,54 @@
+# Maintainer: Jan Alexander Steffens (heftig) <[email protected]>
+
+pkgname=polari
+pkgver=43.0
+pkgrel=2
+pkgdesc="An IRC Client for GNOME"
+url="https://wiki.gnome.org/Apps/Polari"
+arch=(x86_64)
+license=(GPL)
+depends=(
+ gjs
+ gtk4
+ libadwaita
+ libsoup3
+ telepathy-glib
+ telepathy-idle
+ telepathy-logger
+ telepathy-mission-control
+)
+makedepends=(
+ appstream-glib
+ git
+ gobject-introspection
+ meson
+ yelp-tools
+)
+groups=(gnome-extra)
+_commit=0cf049c1c5704cf5fa0a4b80194860e2c4e433a9 # tags/43.0^0
+source=("git+https://gitlab.gnome.org/GNOME/polari.git#commit=$_commit")
+b2sums=('SKIP')
+
+pkgver() {
+ cd polari
+ git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+ cd polari
+}
+
+build() {
+ arch-meson polari build
+ meson compile -C build
+}
+
+check() {
+ meson test -C build --print-errorlogs
+}
+
+package() {
+ meson install -C build --destdir "$pkgdir"
+}
+
+# vim:set sw=2 sts=-1 et: