mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-02-10 03:40:52 +00:00
22 lines
860 B
Bash
22 lines
860 B
Bash
TERMUX_PKG_HOMEPAGE=https://www.spice-space.org/
|
|
TERMUX_PKG_DESCRIPTION="Implements the server side of the SPICE protocol"
|
|
TERMUX_PKG_LICENSE="LGPL-2.1"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION="0.16.0"
|
|
TERMUX_PKG_SRCURL=https://www.spice-space.org/download/releases/spice-server/spice-${TERMUX_PKG_VERSION}.tar.bz2
|
|
TERMUX_PKG_SHA256=0a6ec9528f05371261bbb2d46ff35e7b5c45ff89bb975a99af95a5f20ff4717d
|
|
TERMUX_PKG_DEPENDS="glib, gst-plugins-base, gstreamer, libc++, libiconv, libjpeg-turbo, liblz4, libopus, liborc, libpixman, libsasl, libspice-protocol, openssl, zlib"
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
|
--enable-manual=no
|
|
--disable-tests
|
|
"
|
|
|
|
termux_step_pre_configure() {
|
|
LDFLAGS+=" $($CC -print-libgcc-file-name)"
|
|
}
|
|
|
|
termux_step_post_make_install() {
|
|
ln -sf libspice-server.so "${TERMUX_PREFIX}"/lib/libspice-server.so.1
|
|
}
|