30 lines
659 B
Plaintext
30 lines
659 B
Plaintext
# Description: GTK viewer for the spice protocol
|
|
# URL: http://spice-space.org
|
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
|
# Depends on: gtk3 openssl celt51 cyrus-sasl
|
|
|
|
name=spice-gtk
|
|
version=0.21
|
|
release=1
|
|
source=(http://spice-space.org/download/gtk/spice-gtk-$version.tar.bz2 \
|
|
palette_remove.patch)
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
patch -i ../palette_remove.patch -p1
|
|
|
|
./configure --prefix=/usr \
|
|
--datarootdir=/usr/lib \
|
|
--disable-smartcard \
|
|
--with-audio=no \
|
|
--enable-gtk-doc-html=no
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -rf $PKG/usr/{lib/gtk-doc/,share}
|
|
|
|
}
|