updated on Tue Jan 10 08:08:34 UTC 2012
[aur-mirror.git] / telepathy-qt4-git / PKGBUILD
blob85075ea7787166e71dbca766a7113cbcec7955f7
1 # Maintainer: George Brooke <george+arch.aur@george-brooke.co.uk>
2 # Contributor: Laurent Carlier <lordheavym@gmail.com>
4 pkgname=telepathy-qt4-git
5 pkgver=20111006
6 pkgrel=1
7 pkgdesc="A library for Qt-based Telepathy clients"
8 arch=('i686' 'x86_64')
9 url="http://telepathy.freedesktop.org"
10 license=('LGPL')
11 depends=('qt' 'telepathy-farsight')
12 makedepends=('libxslt' 'python2' 'cmake' 'git' 'doxygen')
13 conflicts=('telepathy-qt4')
14 provides=('telepathy-qt4')
15 options=('!libtool')
17 _gitroot="git://git.collabora.co.uk/git/freedesktop.org-mirror/telepathy/telepathy-qt4.git"
18 _gitname="telepathy-qt4"
20 build() {
21   cd ${srcdir}
23   msg "Connecting to the GIT server...."
24   
25   if [[ -d ${srcdir}/$_gitname ]] ; then
26     cd $_gitname
27     git pull origin
28     msg "The local files are updated."
29   else
30     git clone $_gitroot
31   fi
32   
33   msg "GIT checkout done"
34   msg "Starting make..."
35   
36   rm -rf ${srcdir}/build && mkdir ${srcdir}/build
37   cd ${srcdir}/build
39   cmake ../$_gitname \
40       -DCMAKE_INSTALL_PREFIX=/usr \
41       -DPYTHON_EXECUTABLE=/usr/bin/python2
43   make
46 package() {
47   cd ${srcdir}/build
49   make DESTDIR="$pkgdir" install