updated on Thu Jan 19 20:01:47 UTC 2012
[aur-mirror.git] / yakuake-git / PKGBUILD
blobe903ecb26009a73c5dbab5d7aad4cbef6c0dadf1
1 # Maintainer: Jakub Schmidtke <sjakub-at-gmail-dot-com>
3 pkgname=yakuake-git
4 pkgver=20110217
5 pkgrel=1
6 pkgdesc="A KDE konsole application with the look and feel of that in the Quake engine - GIT version"
7 arch=('i686' 'x86_64')
8 url="http://yakuake.kde.org"
9 license=('GPL')
10 depends=('kdebase-konsole')
11 makedepends=('cmake' 'automoc4' 'git')
12 install="${pkgname}.install"
13 provides=('yakuake')
14 conflicts=('yakuake')
16 _gitroot="git://anongit.kde.org/yakuake.git"
17 _gitname="yakuake"
19 build() {
20   cd ${srcdir}
21   msg "Connecting to GIT server...."
23   if [ -d ${_gitname}/.git ] ; then
24     cd ${_gitname}
26     # Change remote url to anongit
27     if [ -z $( git branch -v | grep anongit ) ] ; then
28         git remote set-url origin ${_gitroot}
29     fi
30     
31     git pull origin
32     msg "The local files are updated."
33   else
34     git clone ${_gitroot} ${_gitname}
35   fi
37   msg "GIT checkout done or server timeout"
38   msg "Starting make..."
40   cd ${srcdir}
41   mkdir build
42   cd build
43   cmake ../${_gitname} \
44     -DCMAKE_BUILD_TYPE=Release \
45     -DCMAKE_SKIP_RPATH=ON \
46     -DCMAKE_INSTALL_PREFIX=/usr
47   make
50 package() {
51   cd ${srcdir}/build
52   make DESTDIR=${pkgdir} install