updated on Fri Jan 13 20:02:10 UTC 2012
[aur-mirror.git] / luma-cvs / PKGBUILD
blob3c1a9715ff56f491e2ef39a87f2bafe89cf471a9
1 # Contributor: Christian Hesse <mail@earthworm.de
3 pkgname=luma-cvs
4 pkgver=20101116
5 pkgrel=1
6 pkgdesc="A feature-full LDAP browser/editor using PyQT -- CVS checkout"
7 arch=('any')
8 url="http://luma.sourceforge.net/"
9 license=('GPL')
10 depends=('pyqt3' 'python2-ldap')
11 makedepends=('cvs')
12 conflicts=('luma')
13 provides=('luma')
15 _cvsroot=":pserver:anonymous:@luma.cvs.sourceforge.net:/cvsroot/luma"
16 _cvsmod="luma"
18 build() {
19   cd "$srcdir"
21   msg "Connecting to $_cvsmod.sourceforge.net CVS server...."
22   if [ -d $_cvsmod/CVS ]; then
23     cd $_cvsmod
24     cvs -z3 update -d
25   else
26     cvs -z3 -d $_cvsroot co -D $pkgver -f $_cvsmod
27     cd $_cvsmod
28   fi
30   msg "CVS checkout done or server timeout"
32   cd $srcdir/luma/
33   mkdir $pkgdir/usr
34   python2 install.py --prefix=$pkgdir/usr
36 md5sums=()