Date: Wednesday, October 26, 2022 @ 22:55:48
Author: heftig
Revision: 1337927
archrelease: copy trunk to community-testing-x86_64
Added:
gnome-tour/repos/community-testing-x86_64/
gnome-tour/repos/community-testing-x86_64/PKGBUILD
(from rev 1337926, gnome-tour/trunk/PKGBUILD)
----------+
PKGBUILD | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
Copied: gnome-tour/repos/community-testing-x86_64/PKGBUILD (from rev 1337926,
gnome-tour/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD (rev 0)
+++ community-testing-x86_64/PKGBUILD 2022-10-26 22:55:48 UTC (rev 1337927)
@@ -0,0 +1,27 @@
+# Maintainer: Balló György <ballogyor+arch at gmail dot com>
+# Contributor: Fabian Bornschein <fabiscafe-cat-mailbox-dog-org>
+
+pkgname=gnome-tour
+pkgver=43.0
+pkgrel=1
+pkgdesc='Guided tour and greeter for GNOME'
+arch=('x86_64')
+url='https://gitlab.gnome.org/GNOME/gnome-tour'
+license=('GPL3')
+depends=('gtk4' 'libadwaita')
+makedepends=('appstream-glib' 'meson' 'rust')
+source=("https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz")
+sha256sums=('1351e419627fbd7c771932a6ef1ad80c0bf2e6828c4948a062068984ddb3cc88')
+
+build() {
+ arch-meson $pkgname-$pkgver build
+ meson compile -C build
+}
+
+check() {
+ meson test -C build --print-errorlogs
+}
+
+package() {
+ meson install -C build --destdir "$pkgdir"
+}