aboutsummaryrefslogtreecommitdiffstats
path: root/testing/gnome-backgrounds/APKBUILD
blob: 3c600bb1c643fcfb0f3d176027f47d3b1cccc574 (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
# Maintainer: 
pkgname=gnome-backgrounds
pkgver=3.30.0
pkgrel=0
pkgdesc="backgrounds for the GNOME desktop environment"
url="https://www.gnome.org/"
arch="noarch !s390x"
license="GPL"
makedepends="gnome-desktop-dev meson ninja"
subpackages="$pkgname-lang"
source="https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz"
builddir="$srcdir/$pkgname-$pkgver"

build() {
	mkdir -p "$builddir"/build
	cd "$builddir"/build
	meson \
		--prefix=/usr \
		--buildtype=release \
		--sysconfdir=/etc ..
	ninja
}

check() {
	cd "$builddir"/build
	ninja test
}

package() {
	cd "$builddir"/build
	export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
	DESTDIR="$pkgdir" ninja install
}

sha512sums="a9fd254126448613681e64c841fb0e29a8d1e18adad3aa0c225555d01fbe0a33139486595d8537293425510d56826379caaac2e02157f2c2a9289cdad3bc040c  gnome-backgrounds-3.30.0.tar.xz"