updated on Wed Jan 25 08:34:36 UTC 2012
[aur-mirror.git] / sithwm-cvs / PKGBUILD
blobaeb2ada6584f34597650957e39a96640969ca3b2
1 # Contributor: Stefan Husmann <stefan-husmann@t-online.de>
2 pkgname=sithwm-cvs
3 pkgver=20080814
4 pkgrel=1
5 pkgdesc="a minimalist window manager - cvs version"
6 arch=('i686' 'x86_64')
7 url="http://sithwm.darkside.no/sithwm.html"
8 license=('GPL')
9 depends=('libx11')
10 makedepends=('cvs')
11 provides=(sithwm)
12 conflicts=(sithwm)
13 install=sithwm.install
14 source=()
15 md5sums=()
17 _cvsroot=":pserver:anonymous@sithwm.cvs.sourceforge.net:/cvsroot/sithwm"
18 _cvsmod="sithwm"
20 build() {
21   cd $srcdir
22   msg "Connecting to $_cvsmod.sourceforge.net CVS server...."
23   if [ -d $_cvsmod/CVS ]; then
24     cd $_cvsmod
25     cvs -z3 update -d
26   else
27     cvs -z3 -d $_cvsroot co -D $pkgver -f $_cvsmod
28     cd $_cvsmod
29   fi
31   msg "CVS checkout done or server timeout"
32   msg "Starting make..."
34   rm -r $srcdir/$_cvsmod-build
35   cp -r ../$_cvsmod ../$_cvsmod-build
36   cd ../$_cvsmod-build
39   #
40   # BUILD HERE
41   #
43   make || return 1
44   make DESTDIR=$startdir/pkg install || return 1