updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / multivnc-git / PKGBUILD
blobd270a98bb1f9ed0deb0c972629029b103c3036b0
1 # Contributor: Max Devaine <maxdevaine@gmail.com>
3 pkgname=multivnc-git
4 pkgver=20100906
5 pkgrel=1
6 pkgdesc='MultiVNC is a cross-platform Multicast-enabled VNC viewer using wxWidgets and libvncclient'
7 arch=(i686 x86_64)
8 url='http://multivnc.sourceforge.net/'
9 license=('GPL')
10 makedepends=('git')
11 conflicts=('multivnc')
13 _gitroot="git://multivnc.git.sourceforge.net/gitroot/multivnc/multivnc"
14 _gitname="multivnc"
16 build() {
17   cd "$srcdir"
19   msg "Connecting to GIT server...."
21   if [ -d "$srcdir/$_gitname" ] ; then
22     cd $_gitname && git pull origin
23     msg "The local files are updated."
24   else
25     git clone $_gitroot
26   fi
28   msg "GIT checkout done or server timeout"
29   msg "Starting make..."
31   cd "$srcdir/$_gitname"
33   ./autogen.sh
34   ./configure --prefix=/usr
35   make || return 1
36   make DESTDIR="$pkgdir" install 
40 #category: network
41 # vim:set ts=2 sw=2 et: