blob: 3268efcb05162ae3dd575a28a1c33d5dcc1acf9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: Widget de client VNC pour GTK
# URL: http://live.gnome.org/gtk-vnc
# Maintainer: NuTyX Core team
# Packager: piernov <piernov@piernov.org>
# Depends on: gtk3, pygtk, gnutls
# Run on: gtk3,pygtk,gnutls
name=gtk-vnc
version=0.4.4
release=1
source=(http://ftp.gnome.org/pub/gnome/sources/$name/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
--with-python \
--with-examples \
--with-gtk=3.0
make
make DESTDIR=$PKG install
}
|