summaryrefslogtreecommitdiff
path: root/extra/spice/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'extra/spice/PKGBUILD')
-rw-r--r--extra/spice/PKGBUILD27
1 files changed, 27 insertions, 0 deletions
diff --git a/extra/spice/PKGBUILD b/extra/spice/PKGBUILD
new file mode 100644
index 000000000..b5878e11d
--- /dev/null
+++ b/extra/spice/PKGBUILD
@@ -0,0 +1,27 @@
+# $Id: PKGBUILD 196189 2013-10-08 07:21:39Z tpowa $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+# Maintainer: Patryk Kowalczyk < patryk at kowalczyk dot ws>
+
+pkgname=spice
+pkgver=0.12.4
+pkgrel=2
+pkgdesc="SPICE client and server"
+arch=('i686' 'x86_64')
+url="http://spice-space.org"
+license=('LGPL2.1')
+depends=(alsa-lib celt0.5.1 libcacard libjpeg-turbo libsasl libxinerama libxfixes libxrandr pixman)
+makedepends=(python2-pyparsing qemu spice-protocol)
+options=(!libtool)
+source=(http://spice-space.org/download/releases/$pkgname-$pkgver.tar.bz2)
+md5sums=('325b1c42ce24e75de45a75876b73a8bd')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ PYTHON=python2 ./configure --prefix=/usr --disable-static --enable-smartcard --enable-client
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make DESTDIR="$pkgdir/" install
+}