void-packages/srcpkgs/spice/template

43 lines
1.5 KiB
Bash

# Template file for 'spice'
pkgname=spice
version=0.15.1
revision=2
build_style=gnu-configure
configure_args="--disable-tunnel --disable-opengl --enable-smartcard
--with-sasl --disable-static --enable-xinerama --disable-celt051"
hostmakedepends="pkg-config python3"
makedepends="spice-protocol libjpeg-turbo-devel pixman-devel
openssl-devel opus-devel alsa-lib-devel libXfixes-devel libXrender-devel
libXrandr-devel libsasl-devel libXinerama-devel libglib-devel libcacard-devel
nss-devel"
checkdepends="glib-networking"
short_desc="Implements the SPICE protocol"
maintainer="Anachron <gith@cron.world>"
license="LGPL-2.1-or-later"
homepage="https://www.spice-space.org/"
changelog="https://gitlab.freedesktop.org/spice/spice/-/raw/master/CHANGELOG.md"
distfiles="https://www.spice-space.org/download/releases/spice-server/spice-${version}.tar.bz2"
checksum=ada9af67ab321916bd7eb59e3d619a4a7796c08a28c732edfc7f02fc80b1a37a
if [ "$XBPS_TARGET_ENDIAN" != "le" ]; then
broken="SPICE server only works on little endian architectures"
fi
if [ "$XBPS_TARGET_LIBC" = "musl" ]; then
# tests depend on odd behaviour of glibc
# in this case being that calling getnameinfo on an AF_LOCAL socket
# will return successfully, with either hostname or "localhost"
# musl errors out instead, thus failing the tests
make_check=no
fi
spice-devel_package() {
depends="${makedepends} ${sourcepkg}>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
vmove usr/lib/*.so
}
}