aboutsummaryrefslogtreecommitdiffstats
path: root/testing/gnome-backgrounds
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2018-10-08 12:22:42 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2018-10-09 12:37:45 +0000
commit52ecf28062981c6f4ec0901e650b161da7c8b57a (patch)
treee7589d363a5bb1c8e6dd162857dcc0ef1df0ebb1 /testing/gnome-backgrounds
parent3eed6893c41e5584a4c9c67a97a82f29d4e32d59 (diff)
downloadaports-52ecf28062981c6f4ec0901e650b161da7c8b57a.tar.bz2
aports-52ecf28062981c6f4ec0901e650b161da7c8b57a.tar.xz
testing/gnome-backgrounds: upgrade to 3.30.0
Diffstat (limited to 'testing/gnome-backgrounds')
-rw-r--r--testing/gnome-backgrounds/APKBUILD31
1 files changed, 15 insertions, 16 deletions
diff --git a/testing/gnome-backgrounds/APKBUILD b/testing/gnome-backgrounds/APKBUILD
index 4ed3ffba37..09434b8491 100644
--- a/testing/gnome-backgrounds/APKBUILD
+++ b/testing/gnome-backgrounds/APKBUILD
@@ -1,36 +1,35 @@
# Maintainer: William Pitcock <nenolod@dereferenced.org>
pkgname=gnome-backgrounds
-pkgver=3.26.1
-pkgrel=1
+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"
+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() {
- cd "$builddir"
- ./configure \
- --build=$CBUILD \
- --host=$CHOST \
+ mkdir -p "$builddir"/build
+ cd "$builddir"/build
+ meson \
--prefix=/usr \
- --sysconfdir=/etc \
- --mandir=/usr/share/man \
- --localstatedir=/var
- make
+ --buildtype=release \
+ --sysconfdir=/etc ..
+ ninja
}
check() {
- cd "$builddir"
- make check
+ cd "$builddir"/build
+ ninja test
}
package() {
- cd "$builddir"
- make DESTDIR="$pkgdir" install
+ cd "$builddir"/build
+ export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
+ DESTDIR="$pkgdir" ninja install
}
-sha512sums="2b8a62edafc610c3280a2c2d1be52f2c3d9c47d6443f676cde365a03fd75dbf30385b6db0602f58e8833235ccfe8574e23b4fd6fc41dfeb8426dd934aecd5b77 gnome-backgrounds-3.26.1.tar.xz"
+sha512sums="a9fd254126448613681e64c841fb0e29a8d1e18adad3aa0c225555d01fbe0a33139486595d8537293425510d56826379caaac2e02157f2c2a9289cdad3bc040c gnome-backgrounds-3.30.0.tar.xz"