diff options
author | root <root@rshg054.dnsready.net> | 2013-07-04 00:45:57 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-04 00:45:57 -0700 |
commit | 04b07250d0055e5cecd7c998660c5595699cfe1c (patch) | |
tree | 8697097210dfb2b705afb6ba145dafd08c476f84 /community/spice/PKGBUILD | |
parent | 68e8645dcd1ce619af6d92f3645c43b15bc5ac71 (diff) |
Thu Jul 4 00:45:57 PDT 2013
Diffstat (limited to 'community/spice/PKGBUILD')
-rw-r--r-- | community/spice/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/community/spice/PKGBUILD b/community/spice/PKGBUILD new file mode 100644 index 000000000..7f033c5a5 --- /dev/null +++ b/community/spice/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 93446 2013-07-03 13:23:11Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Maintainer: Patryk Kowalczyk < patryk at kowalczyk dot ws> + +pkgname=spice +pkgver=0.12.3 +pkgrel=1 +pkgdesc="SPICE client and server" +arch=('i686' 'x86_64') +url="http://spice-space.org" +license=('GPL') +makedepends=(python2 python2-pyparsing qemu mesa) +depends=(pixman spice-protocol alsa-utils libxrandr libxinerama libsasl openssl celt0.5.1 libgl glu) +source=(http://spice-space.org/download/releases/$pkgname-$pkgver.tar.bz2) +md5sums=('f33a682892f6793169f20298b2296449') + +build() { + cd "$srcdir/$pkgname-$pkgver" + PYTHON=python2 ./configure --prefix=/usr --enable-opengl --enable-client + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir/" install +} |