PKGBUILDs/extra/x2vnc/PKGBUILD
2009-10-09 21:23:22 -05:00

22 lines
722 B
Bash

# $Id: PKGBUILD 36338 2009-04-21 02:15:45Z eric $
# Maintainer: simo <simo@archlinux.org>
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
pkgname=x2vnc
pkgver=1.7.2
pkgrel=2
pkgdesc="Lets you use two monitors on two different computers one one computer"
arch=(i686 x86_64)
url="http://fredrik.hubbe.net/x2vnc.html"
license=('GPL')
depends=('libsm' 'libxinerama' 'libxss' 'libxrandr' 'libxxf86dga')
source=(http://fredrik.hubbe.net/x2vnc/$pkgname-$pkgver.tar.gz)
md5sums=('f23f86bcfa12a80eaeb886ab9b3ee447')
build() {
cd $srcdir/$pkgname-$pkgver
./configure --prefix=/usr --mandir=/usr/share/man || return 1
install -d $pkgdir/usr/{bin,share/man/man1}
make || return 1
make DESTDIR=$pkgdir install || return 1
}