diff options
Diffstat (limited to 'network/spice-gtk/spice-gtk.SlackBuild')
-rw-r--r-- | network/spice-gtk/spice-gtk.SlackBuild | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/network/spice-gtk/spice-gtk.SlackBuild b/network/spice-gtk/spice-gtk.SlackBuild index fe573b5946..4088ced69f 100644 --- a/network/spice-gtk/spice-gtk.SlackBuild +++ b/network/spice-gtk/spice-gtk.SlackBuild @@ -22,7 +22,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=spice-gtk -VERSION=${VERSION:-0.23} +VERSION=${VERSION:-0.25} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -53,8 +53,9 @@ else LIBDIRSUFFIX="" fi -# enable support for usbredir if available +# enable support for usbredir and libcacard, if available if pkg-config --exists libusbredirhost; then usbredir="en"; else usbredir="dis"; fi +if pkg-config --exists libcacard; then cacard="en"; else cacard="dis"; fi if [ "$GTK" = "2" ]; then gtkver="2"; else gtkver="3"; fi DOCS="AUTHORS COPYING NEWS README THANKS TODO" @@ -97,6 +98,7 @@ CXXFLAGS="$SLKCFLAGS" \ --with-audio=gstreamer \ --disable-maintainer-mode \ --${usbredir}able-usbredir \ + --${cacard}able-smartcard \ --build=$ARCH-slackware-linux make |