summaryrefslogtreecommitdiff
path: root/community/neatx/PKGBUILD
blob: a67c2df6e8452ab33553dc51821def834a5d8520 (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
25
26
27
28
29
30
31
32
33
34
# $Id: PKGBUILD 66247 2012-02-23 05:19:47Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Nicolas Doualot <packages@slubman.info>

pkgname=neatx
pkgver=0.3.1
pkgrel=11
pkgdesc="A free NX server by google"
arch=('i686' 'x86_64' 'mips64el')
url="http://code.google.com/p/neatx/"
license=('GPL')
depends=('nxserver' 'python-pexpect' 'python-simplejson' 'netcat' 'pygtk')
makedepends=('docutils')
optdepends=('xorg-xdm: if you want to use KDE or GNOME session'
	    'xorg-fonts-misc: to use default font'
	    'xterm: if you want console session')
install=neatx.install
source=(http://neatx.googlecode.com/files/$pkgname-$pkgver.tar.gz
        constants.archlinux.patch)
md5sums=('5748656738d5f04fef1af01b9fe5ef20'
         'a5ca4aa399cc25fa8435280e8b03c5a3')

build() {
  cd "$srcdir/$pkgname-$pkgver"
  patch -i "$srcdir/constants.archlinux.patch" -p2

  ./configure --prefix=/usr --localstatedir=/var RST2HTML=/usr/bin/rst2html
  make
  make DESTDIR="$pkgdir/" install
  chmod 777 "$pkgdir/var/lib/neatx/sessions"

  install -d -m755 ${pkgdir}/etc/ld.so.conf.d/
  echo -e '/usr/lib\n/opt/NX/lib' > ${pkgdir}/etc/ld.so.conf.d/neatx.conf
}