updated on Tue Jan 17 12:00:36 UTC 2012
[aur-mirror.git] / spice-client / PKGBUILD
blobebfb9de1156e94c52df7f9400032d03f82f88df9
1 # Contributor: Jon Nordby <jononor@gmail.com>; David Markey <david@dmarkey.com>
3 pkgname=spice-client
4 pkgver=0.4.0
5 pkgrel=1
6 pkgdesc="Client for the SPICE virtual desktop protocol"
7 arch=('i686' 'x86_64')
8 url="http://www.spice-space.org"
9 license=('GPL')
10 depends=(log4cpp celt0.5.1 qcairo ffmpeg alsa-utils glut libxrandr)
11 makedepends=()
12 conflicts=(spice)
13 install=
14 _tarballname=spice_0_4
15 source=($url/download/$_tarballname.tar.bz2 remove_info.patch)
16 noextract=()
17 md5sums=('f4c3e4092e0649e7c897bd4711902630' '6e7bbc1d740a939f45f1eda39f377209')
20 build() {
21   cd "$srcdir/spice"
22   ./autogen.sh --prefix=/usr || return 1
23   patch -p1 -Np1 -i ../../remove_info.patch
24   cd client/x11
25   make || return 1
26   make DESTDIR="$pkgdir/" install || return 1
29 # vim:set ts=2 sw=2 et: