updated on Mon Jan 23 12:00:23 UTC 2012
[aur-mirror.git] / aqpm-git / PKGBUILD
blobde8c8c81c5f39d0de14e95aea9b308d07565581e
1 # Contributor: Elyess Zouaghi <elyess.tds@gmail.com>
2 # temporary using my repo till the main repo get merged with recent patch
4 pkgname=aqpm-git
5 pkgver=20100915
6 pkgrel=1
7 pkgdesc="A Qt wrapper around Alpm, Arch Linux Package Management library"
8 arch=('i686' 'x86_64')
9 url="http://github.com/drf/aqpm.git"
10 license=('GPL')
11 depends=('pacman' 'polkit-qt')
12 makedepends=('git' 'cmake>=2.6' 'automoc4')
13 provides=('libaqpm')
14 conflicts=('libaqpm')
16 _gitroot="git://github.com/elyess/aqpm.git"
17 _gitname="aqpm"
19 build() {
20   msg "Connecting to GIT server...."
22   [ -d $_gitname ] && {
23         cd $_gitname
24         git pull origin
25         cd ..
27         msg "Local files have been updated."
28   } || {
29         git clone $_gitroot
30   }
32   msg "GIT checkout done or server timeout"
34   rm -rf $_gitname-build
35   git clone $_gitname $_gitname-build
36   cd $_gitname-build
38   msg "Starting make..."
40   cmake . -DCMAKE_INSTALL_PREFIX=/usr
41   make || return 1
42   make DESTDIR="$pkgdir" install
43