1 # Maintainer: Jakub Schmidtke <sjakub-at-gmail-dot-com>
6 pkgdesc="A KDE konsole application with the look and feel of that in the Quake engine - GIT version"
8 url="http://yakuake.kde.org"
10 depends=('kdebase-konsole')
11 makedepends=('cmake' 'automoc4' 'git')
12 install="${pkgname}.install"
16 _gitroot="git://anongit.kde.org/yakuake.git"
21 msg "Connecting to GIT server...."
23 if [ -d ${_gitname}/.git ] ; then
26 # Change remote url to anongit
27 if [ -z $( git branch -v | grep anongit ) ] ; then
28 git remote set-url origin ${_gitroot}
32 msg "The local files are updated."
34 git clone ${_gitroot} ${_gitname}
37 msg "GIT checkout done or server timeout"
38 msg "Starting make..."
43 cmake ../${_gitname} \
44 -DCMAKE_BUILD_TYPE=Release \
45 -DCMAKE_SKIP_RPATH=ON \
46 -DCMAKE_INSTALL_PREFIX=/usr
52 make DESTDIR=${pkgdir} install