blob: a920128ecaf5d169a43eba62545201e3369e0003 (
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
|
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=spice-protocol
pkgver=0.14.4
pkgrel=1
pkgdesc="Spice protocol header files"
url="http://www.spice-space.org/"
arch="noarch"
license="BSD-3-Clause AND LGPL-2.1-or-later"
options="!check" # No test suite
makedepends="meson"
source="https://www.spice-space.org/download/releases/spice-protocol-$pkgver.tar.xz"
build() {
abuild-meson build
meson compile -C build/
}
package() {
DESTDIR="$pkgdir" meson install --no-rebuild -C build
}
sha512sums="
c55677fd6da37303487f8245388cbd555715c736e15bca4a305c4374feafc655b74e549ea401949d72e17b2e6ad76f16c5add3963008a18a1fefedd4b4a001c1 spice-protocol-0.14.4.tar.xz
"
|