desktop/spice/PKGBUILD

23 lines
648 B
Bash
Raw Normal View History

2015-11-19 06:46:22 +08:00
pkgname=spice
pkgver=0.12.6
2016-03-23 03:31:40 +08:00
pkgrel=2
2015-11-19 06:46:22 +08:00
pkgdesc="SPICE client and server"
2016-03-23 03:31:40 +08:00
arch=('x86_64')
2015-11-19 06:46:22 +08:00
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 python2-six qemu spice-protocol)
source=(http://spice-space.org/download/releases/$pkgname-$pkgver.tar.bz2)
2016-03-23 03:31:40 +08:00
md5sums=('605a8c8ea80bc95076c4b3539c6dd026')
2015-11-19 06:46:22 +08:00
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
}