Date: Saturday, January 7, 2023 @ 04:23:24 Author: serebit Revision: 1381412
Create budgie-backgrounds package Added: budgie-backgrounds/ budgie-backgrounds/repos/ budgie-backgrounds/trunk/ budgie-backgrounds/trunk/PKGBUILD ----------+ PKGBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) Added: budgie-backgrounds/trunk/PKGBUILD =================================================================== --- budgie-backgrounds/trunk/PKGBUILD (rev 0) +++ budgie-backgrounds/trunk/PKGBUILD 2023-01-07 04:23:24 UTC (rev 1381412) @@ -0,0 +1,26 @@ +# Maintainer: Campbell Jones <serebit at archlinux dot org> + +pkgname=budgie-backgrounds +pkgver="1.0" +pkgrel=1 +pkgdesc="The default background set for the Budgie Desktop" +arch=(any) +url="https://github.com/BuddiesOfBudgie/budgie-backgrounds" +license=("custom:CC0-1.0") +depends=() +makedepends=(meson imagemagick jhead) +source=("https://github.com/BuddiesOfBudgie/budgie-backgrounds/releases/download/v$pkgver/budgie-backgrounds-v$pkgver.tar.xz"{,.asc}) +sha256sums=("38c23f9f0c0829a6282b81d934136e780a1341ccce338acc2dbf9f14ff539d0c" + "SKIP") +validpgpkeys=("8A59B135826B2DA453B9707408AD7343E6BD4B56") # Campbell Jones (Git) <git at serebit dot com> + +build() { + arch-meson "$pkgname-$pkgver" build + meson compile -C build +} + +package() { + meson install -C build --destdir "$pkgdir" + + install -Dm 00644 "$pkgname-$pkgver/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +}
