updated on Sun Jan 15 08:01:04 UTC 2012
[aur-mirror.git] / chase-git / PKGBUILD
blob34287e3328a5048b75937d75df560457d9e983a1
1 # Contributor: Alexander Mityunin <avm-xandry_at_yandex_dot_ru>
3 pkgname=chase-git
4 pkgver=20100521
5 pkgrel=1
6 pkgdesc="CHakra and Arch SElf-updater. A KDED daemon used for automating updates"
7 arch=('i686' 'x86_64')
8 url="http://chakra-project.org/bbs/viewtopic.php?id=1303"
9 license=('GPL')
10 depends=('pacman' 'polkit-qt' 'aqpm2')
11 makedepends=('git' 'cmake>=2.6' 'automoc4')
12 provides=('chase')
13 conflicts=('chase')
15 _gitroot="git://git.chakra-project.org/tools/chase.git"
16 _gitname="chase"
18 build() {
19   msg "Connecting to GIT server...."
21   [ -d $_gitname ] && {
22         cd $_gitname
23         git pull origin
24         cd ..
26         msg "Local files have been updated."
27   } || {
28         git clone $_gitroot
29   }
31   msg "GIT checkout done or server timeout"
33   rm -rf $_gitname-build
34   git clone $_gitname $_gitname-build
35   cd $_gitname-build
37   msg "Starting make..."
39   cmake . -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix`
40   make || return 1
41   make DESTDIR="$pkgdir" install
42 }