mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
network/spice-gtk: Updated for version 0.12
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
This commit is contained in:
parent
659d69766e
commit
179d249e17
3 changed files with 17 additions and 10 deletions
|
@ -2,5 +2,4 @@ spice-gtk (spice gtk client/libraries)
|
||||||
|
|
||||||
A Gtk client and libraries for spice remote desktop servers.
|
A Gtk client and libraries for spice remote desktop servers.
|
||||||
|
|
||||||
vala is an optional dependency and can be enabled with the
|
vala, libcacard and usbredir are optional dependencies.
|
||||||
parameter VALA=yes.
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
# Written by Matteo Bernardini <ponce@slackbuilds.org>
|
# Written by Matteo Bernardini <ponce@slackbuilds.org>
|
||||||
|
|
||||||
PRGNAM=spice-gtk
|
PRGNAM=spice-gtk
|
||||||
VERSION=${VERSION:-0.7}
|
VERSION=${VERSION:-0.12}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_SBo}
|
TAG=${TAG:-_SBo}
|
||||||
|
|
||||||
|
@ -35,10 +35,18 @@ else
|
||||||
LIBDIRSUFFIX=""
|
LIBDIRSUFFIX=""
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "${VALA:-no}" = "no" ]; then
|
# check if vala is there
|
||||||
with_vala=""
|
if pkg-config --exists libvala-0.18 ; then
|
||||||
else
|
|
||||||
with_vala="--enable-vala"
|
with_vala="--enable-vala"
|
||||||
|
else
|
||||||
|
with_vala=""
|
||||||
|
fi
|
||||||
|
|
||||||
|
# check if libcacard is there
|
||||||
|
if pkg-config --exists libcacard ; then
|
||||||
|
with_cacard="--enable-smartcard"
|
||||||
|
else
|
||||||
|
with_cacard=""
|
||||||
fi
|
fi
|
||||||
|
|
||||||
DOCS="AUTHORS COPYING NEWS README THANKS TODO"
|
DOCS="AUTHORS COPYING NEWS README THANKS TODO"
|
||||||
|
@ -76,7 +84,7 @@ CXXFLAGS="$SLKCFLAGS" \
|
||||||
$with_vala \
|
$with_vala \
|
||||||
--with-gtk=2.0 \
|
--with-gtk=2.0 \
|
||||||
--with-audio=gstreamer \
|
--with-audio=gstreamer \
|
||||||
--disable-smartcard \
|
$with_cacard \
|
||||||
--build=$ARCH-slackware-linux
|
--build=$ARCH-slackware-linux
|
||||||
|
|
||||||
make
|
make
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
PRGNAM="spice-gtk"
|
PRGNAM="spice-gtk"
|
||||||
VERSION="0.7"
|
VERSION="0.12"
|
||||||
HOMEPAGE="http://spice-space.org"
|
HOMEPAGE="http://spice-space.org"
|
||||||
DOWNLOAD="http://spice-space.org/download/gtk/spice-gtk-0.7.tar.bz2"
|
DOWNLOAD="http://spice-space.org/download/gtk/spice-gtk-0.12.tar.bz2"
|
||||||
MD5SUM="a47ca51ef4bb27cab35ddbfb9e6c0fff"
|
MD5SUM="2fec0ba391447b5b4d9242455c55b2a3"
|
||||||
DOWNLOAD_x86_64=""
|
DOWNLOAD_x86_64=""
|
||||||
MD5SUM_x86_64=""
|
MD5SUM_x86_64=""
|
||||||
REQUIRES="spice"
|
REQUIRES="spice"
|
||||||
|
|
Loading…
Reference in a new issue