2014-02-04 01:36:00 +00:00
|
|
|
# $Id$
|
|
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
|
|
# Contributor: Stefano Facchini <stefano.facchini@gmail.com>
|
|
|
|
# Contributor: Jonathan Lestrelin <zanko@daemontux.org>
|
|
|
|
# Contributor: Lucio Zara <pennega@gmail.com>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - drop libcacard dep
|
|
|
|
|
|
|
|
pkgname=spice-gtk3
|
2014-04-11 12:16:08 +00:00
|
|
|
pkgver=0.24
|
2014-02-04 01:36:00 +00:00
|
|
|
pkgrel=1
|
|
|
|
pkgdesc="Gtk client and libraries for SPICE remote desktop servers (gtk3 version)"
|
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
url="http://spice-space.org"
|
|
|
|
license=('LGPL2.1')
|
2014-04-11 12:16:08 +00:00
|
|
|
depends=('celt0.5.1' 'dbus-glib' 'gtk3' 'libpulse' 'usbredir' 'libsoup')
|
2014-02-04 01:36:00 +00:00
|
|
|
makedepends=('gobject-introspection' 'intltool' 'python2-pyparsing' 'spice-protocol' 'usbutils' 'vala')
|
|
|
|
source=("http://www.spice-space.org/download/gtk/spice-gtk-$pkgver.tar.bz2")
|
2014-04-11 12:16:08 +00:00
|
|
|
sha256sums=('6efe500845f910945670f11664f584fd13b9db494075c41137eb7bacd60d1ed1')
|
2014-02-04 01:36:00 +00:00
|
|
|
|
|
|
|
prepare() {
|
|
|
|
cd "$srcdir/spice-gtk-$pkgver"
|
|
|
|
sed -i 's,/usr/bin/env python,/usr/bin/python2,' spice-common/spice_codegen.py
|
|
|
|
# Disable broken tests
|
|
|
|
sed -i 's/ tests//' Makefile.{am,in}
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "$srcdir/spice-gtk-$pkgver"
|
|
|
|
PYTHON=python2 ./configure --prefix=/usr \
|
|
|
|
--disable-static --enable-vala --with-gtk=3.0 \
|
|
|
|
--with-coroutine=gthread
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "$srcdir/spice-gtk-$pkgver"
|
|
|
|
make DESTDIR="$pkgdir/" install
|
|
|
|
}
|