blob: 85f92ff06bcddbec5379941af13455f17f45648a (
plain)
1 # Description: protocol headers for interaction with virtualized desktop devices
2 # URL: http://spice-space.org
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4 # Depends on: python-pyparsing
5
6 name=spice-protocol
7 version=0.12.13
8 release=1
9 source=(http://spice-space.org/download/releases/spice-protocol-$version.tar.bz2)
10
11 build() {
12
13 cd $name-$version
14
15 ./configure --prefix=/usr \
16 --datarootdir=/usr/lib
17
18 make
19 make DESTDIR=$PKG install
20
21 }
|