blob: 726c7ab781b6d061b7e62e2cafb53b40e27ef8f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Maintainer: Philip Goto <philip.goto@gmail.com>
pkgname=vanilla-backgrounds
pkgver=1.0.4
pkgrel=1
pkgdesc='Collection of light and dark backgrounds for Vanilla OS'
arch=(any)
url='https://github.com/Vanilla-OS/vanilla-backgrounds'
license=(CC-BY-4.0 CC-BY-SA-4.0)
depends=(webp-pixbuf-loader)
makedepends=(glib2 meson)
_commit=289090efa3ce972d1e87e896bca072424cdd9fa4
source=("https://github.com/Vanilla-OS/vanilla-backgrounds/archive/${_commit}.tar.gz")
b2sums=('d49422b76090db5b72d55fea2fb0861fa2e5ac26bfec1991a630088081da4442e95144618a19b99d8383299030153c78b352920c1564f5e26c476303c3f8393d')
build() {
arch-meson ${pkgname}-${_commit} build
meson compile -C build
}
check() {
meson test -C build --print-errorlogs
}
package() {
meson install -C build --destdir "$pkgdir"
}
|