blob: 353b1205d07ff2782286c90f38b08e79ff58ed05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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"
|