26 lines
693 B
Plaintext
26 lines
693 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 cyrus-sasl python-six spice-protocol libepoxy xorg-libxinerama xorg-libxcursor xorg-libxcomposite json-glib gstreamer gst-plugins-base
|
|
# Optional: usbredir opus lz4
|
|
|
|
name=spice-gtk
|
|
version=0.36
|
|
release=1
|
|
source=(http://spice-space.org/download/gtk/spice-gtk-$version.tar.bz2)
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr \
|
|
--datarootdir=/usr/lib \
|
|
--enable-gtk-doc-html=no
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -rf $PKG/usr/{lib/gtk-doc/,lib/systemd,lib/locale,share/locale}
|
|
|
|
}
|