diff options
-rw-r--r-- | x11/gtk-vnc/APKBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/x11/gtk-vnc/APKBUILD b/x11/gtk-vnc/APKBUILD new file mode 100644 index 0000000000..353b1205d0 --- /dev/null +++ b/x11/gtk-vnc/APKBUILD @@ -0,0 +1,24 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=gtk-vnc +pkgver=0.3.8 +pkgrel=0 +pkgdesc="A VNC viewer widget for GTK" +url="http://live.gnome.org/gtk-vnc" +license="LGPL" +subpackages="$pkgname-dev" +makedepends="gnutls-dev gtk+-dev libiconv-dev gettext-dev intltool expat-dev + libgcrypt-dev libgpg-error-dev" +depends_dev="gtk+-dev gnutls-dev" +source="http://ftp.gnome.org/pub/gnome/sources/$pkgname/0.3/$pkgname-$pkgver.tar.bz2" + +build () +{ + cd "$srcdir"/$pkgname-$pkgver + ./configure --prefix=/usr \ + --without-python \ + --without-examples \ + --disable-static || return 1 + make || return 1 + make DESTDIR="$pkgdir" install || return 1 +} +md5sums="7c7b07a868568206acd3f6e9e4d18ba1 gtk-vnc-0.3.8.tar.bz2" |