updated on Thu Jan 12 04:00:44 UTC 2012
[aur-mirror.git] / tilda-cvs / PKGBUILD
blobede8f4e462534b1331e54a387c282a00b2f43f3a
1 # Contributor: Det <nimetonmaili at gmail a-dot com>
2 # Contributor: <You know who you are>
4 pkgname=tilda-cvs
5 pkgver=20110115
6 pkgrel=1
7 pkgdesc="Linux terminal based on classic terminals from first person shooter games - CVS version"
8 arch=(i686 x86_64)
9 url="http://tilda.sourceforge.net"
10 provides=("tilda=`date +%Y%m%d`")
11 conflicts=('tilda')
12 license=('GPL')
13 depends=('vte' 'confuse' 'libglade')
14 makedepends=('gawk' 'cvs')
15 source=(${pkgname}.patch)
16 md5sums=('a178f911d9941cbe68731a03aa931c02')
17 _cvsmod="tilda"
18 _cvsroot=":pserver:anonymous@tilda.cvs.sourceforge.net:/cvsroot/tilda"
20 build() {
21   if [ -d ${_cvsmod}/CVS ]; then
22     msg "Starting CVS update."
23     cd ${_cvsmod}
24     cvs -z3 update -d
25     msg "Updating finished."
26   else
27     msg "Starting (ugh) CVS checkout ..."
28     cvs -z3 -d ${_cvsroot} co -D ${pkgver} -P ${_cvsmod}
29     msg "Checkout done or the server timed out."
30     cd ${_cvsmod}
31   fi
33   [ -e ../${_cvsmod}-build ] && rm -rf ../${_cvsmod}-build
35   msg "Applying the time fix patch"
36   patch -Np0 -i ../${pkgname}.patch
37   msg "Starting make..."
38   ./autogen.sh
39   ./configure --prefix=/usr
40   make
43 package() {
44   cd ${_cvsmod}
45   make DESTDIR="${pkgdir}" install