updated on Mon Jan 16 00:01:41 UTC 2012
[aur-mirror.git] / gcalcli-git / PKGBUILD
blobeb5c02a9778437e6684e09d9a2f7ca542220ded1
1 # Maintainer: Gabriel Fornaeus <gf@hax0r.se>
2 # Contributor: Gabriel Fornaeus <gf@hax0r.se>
4 pkgname=gcalcli-git
5 pkgver=20111002
6 pkgrel=1
7 pkgdesc="Allows you to access you Google Calendar from a command line, git version"
8 arch=('i686' 'x86_64')
9 url="http://code.google.com/p/gcalcli/"
10 license=('MIT')
11 depends=('python-gdata' 'python-dateutil')
12 makedepends=('git')
13 provides=('gcalcli')
14 conflicts=('gcalcli')
16 _gitroot="https://code.google.com/p/gcalcli"
17 _gitname="gcalcli-git"
19 build() {
20     cd ${srcdir}
22     msg "Connecting to GIT server..."
23     if [[ -d ${_gitname} ]]; then
24         (cd ${_gitname} && git pull origin)
25     else
26         git clone ${_gitroot} ${_gitname}
27     fi
28     msg "GIT checkout done or server timeout"
29     msg "Starting build"
30     cd ${_gitname}
31     install -D -m755 gcalcli ${pkgdir}/usr/bin/gcalcli