summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 254176f2a81418af5771fe69509dbb73d35477a3 (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
28
29
30
31
32
33
34
35
36
# Maintainer: Ben Poest <ben@poest.com>
# Contributor: Philip Goto <philip.goto@gmail.com>
# Contributor: Nahuel Gomez Castro <nahual_gomca@outlook.com.ar>
# Contributor: Alexander F. Rødseth <xyproto@archlinux.org>

pkgname=dynamic-wallpaper-editor
pkgver=2.7
pkgrel=2
pkgdesc='Create or edit XML dynamic wallpapers ("background slideshows") for the GNOME desktop'
arch=(any)
url='https://github.com/maoschanz/dynamic-wallpaper-editor'
license=(GPL3)
depends=(
	python
	hicolor-icon-theme
	dconf
)
makedepends=(
	itstool
	meson
)
source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
b2sums=('00d318eca5950e3ad01c1d52a6bf2488d9bbc2f775f4ec3daa413ede8ec71e346b413e853be5756bb8a632c681860e76d2475408984ed157871bec9ee8e18bbc')

build() {
	arch-meson "${pkgname}-${pkgver}" build
	meson compile -C build
}

check() {
	meson test -C build --print-errorlogs || true
}

package() {
	DESTDIR="${pkgdir}" meson install -C build
}