summaryrefslogtreecommitdiff
path: root/user/spice-protocol/APKBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'user/spice-protocol/APKBUILD')
-rw-r--r--user/spice-protocol/APKBUILD20
1 files changed, 9 insertions, 11 deletions
diff --git a/user/spice-protocol/APKBUILD b/user/spice-protocol/APKBUILD
index e31c8544a..a73fe219d 100644
--- a/user/spice-protocol/APKBUILD
+++ b/user/spice-protocol/APKBUILD
@@ -1,31 +1,29 @@
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
# Maintainer: A. Wilcox <awilfox@adelielinux.org>
pkgname=spice-protocol
-pkgver=0.14.0
+pkgver=0.14.4
pkgrel=0
pkgdesc="Spice protocol header files"
url="https://www.spice-space.org/"
arch="noarch"
+options="!check" # No test suite.
license="BSD-3-Clause AND LGPL-2.1+"
depends=""
-makedepends=""
+makedepends="meson ninja"
subpackages=""
-source="https://www.spice-space.org/download/releases/$pkgname-$pkgver.tar.bz2"
+source="https://www.spice-space.org/download/releases/$pkgname-$pkgver.tar.xz"
build() {
- ./configure \
- --build=$CBUILD \
- --host=$CHOST \
- --prefix=/usr
- make
+ meson setup -Dprefix=/usr -Ddatadir=lib build
+ ninja -C build
}
check() {
- make check
+ ninja -C build check
}
package() {
- make pkgconfigdir=/usr/lib/pkgconfig DESTDIR="$pkgdir" install
+ DESTDIR="$pkgdir" ninja -C build install
}
-sha512sums="797df5f529731e9fd395b5946af2490ecf02c26982cc4a0aef24c1766887a35222f68525a996f8bc7459c2c4a25fde0c9a10c489ee6cab6eed7a68a9b5d90f76 spice-protocol-0.14.0.tar.bz2"
+sha512sums="c55677fd6da37303487f8245388cbd555715c736e15bca4a305c4374feafc655b74e549ea401949d72e17b2e6ad76f16c5add3963008a18a1fefedd4b4a001c1 spice-protocol-0.14.4.tar.xz"