Date: Saturday, March 25, 2023 @ 23:00:46
Author: heftig
Revision: 472023
archrelease: copy trunk to gnome-unstable-any
Added:
gnome-backgrounds/repos/gnome-unstable-any/
gnome-backgrounds/repos/gnome-unstable-any/PKGBUILD
(from rev 472022, gnome-backgrounds/trunk/PKGBUILD)
----------+
PKGBUILD | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
Copied: gnome-backgrounds/repos/gnome-unstable-any/PKGBUILD (from rev 472022,
gnome-backgrounds/trunk/PKGBUILD)
===================================================================
--- gnome-unstable-any/PKGBUILD (rev 0)
+++ gnome-unstable-any/PKGBUILD 2023-03-25 23:00:46 UTC (rev 472023)
@@ -0,0 +1,30 @@
+# Maintainer: Jan Alexander Steffens (heftig) <[email protected]>
+# Contributor: Jan de Groot <[email protected]>
+
+pkgname=gnome-backgrounds
+pkgver=44.0
+pkgrel=1
+pkgdesc="Background images and data for GNOME"
+url="https://gitlab.gnome.org/GNOME/gnome-backgrounds"
+arch=(any)
+license=(CCPL:by-sa)
+depends=(webp-pixbuf-loader)
+makedepends=(glib2 meson)
+groups=(gnome)
+source=(https://download.gnome.org/sources/$pkgname/${pkgver%%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('4a8393b387135f2a6a424a1a0c3ac94e0742b62b8235a0923c929f51e04be04e')
+
+build() {
+ arch-meson $pkgname-$pkgver 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: