mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
25 lines
796 B
Bash
25 lines
796 B
Bash
# $Id: PKGBUILD,v 1.4 2008/09/09 09:57:07 allan Exp $
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
# Maintainer: Allan McRae <mcrae_allan@hotmail.com>
|
|
# Contributor: lp76 <l.peduto@gmail.com>
|
|
|
|
pkgname=gtk-vnc
|
|
pkgver=0.3.8
|
|
pkgrel=1
|
|
pkgdesc="A VNC viewer widget for GTK"
|
|
arch=('i686' 'x86_64')
|
|
url="http://live.gnome.org/gtk-vnc"
|
|
license=('LGPL')
|
|
depends=('gnutls>=2.6.4' 'gtk2>=2.16.0')
|
|
makedepends=('pkgconfig' 'pygtk>=2.14.1')
|
|
options=(!libtool)
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/0.3/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('7c7b07a868568206acd3f6e9e4d18ba1')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --with-python \
|
|
--with-examples --disable-static || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|