4 pkgdesc="BaulkTerm is a terminal emulator written in pure QT4 and is part of the Baulk tiling application manager."
6 url="http://baulk.sf.net"
9 makedepends=('git' 'cmake>=2.6.0' 'doxygen' 'graphviz')
15 _gitroot="git://gitorious.org/baulk/baulk.git"
21 msg "Perusing git handles..."
22 if [[ -d $_gitname ]]; then
23 ( cd $_gitname && git pull origin )
25 git clone $_gitroot $_gitname
28 msg "Git tea is ready, or it spilt all over you."
31 rm -rf $_gitname-build
32 cp -r $_gitname $_gitname-build
33 cd $_gitname-build/src
35 cmake -DCMAKE_INSTALL_PREFIX=/usr -DBuildBaulkTermBinary=true || return 1
37 make DESTDIR=$pkgdir install || return 1