updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / cltwitter-git / PKGBUILD
blob0acf6cf1561845fca6ab596d8af1d9124af97538
1 # Contributor: Martin Häger <martin.haeger@gmail.com> 
2 pkgname=cltwitter-git
3 pkgver=20100214
4 pkgrel=1
5 pkgdesc="Command-line utility for posting updates to Twitter, written in C."
6 arch=('i686' 'x86_64')
7 url="http://mtah.github.com/cltwitter"
8 license=('GPL')
9 depends=('curl' 'libxml2' 'pcre' 'liboauth')
10 makedepends=('git')
11 provides=()
12 conflicts=()
13 options=()
14 source=()
15 md5sums=()
17 _gitroot="git://github.com/mtah/cltwitter.git"
18 _gitname="cltwitter"
20 build() {
21   cd "$srcdir"
22   msg "Connecting to GIT server...."
24   if [ -d $_gitname ] ; then
25     cd $_gitname && git pull origin
26     msg "The local files are updated."
27   else
28     git clone $_gitroot
29   fi
31   msg "GIT checkout done or server timeout"
32   msg "Starting make..."
34   rm -rf "$srcdir/$_gitname-build"
35   git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build"
36   cd "$srcdir/$_gitname-build"
38   ./autogen.sh
39   ./configure --prefix=/usr --sysconfdir=/etc
40   make || return 1
41   make DESTDIR="$pkgdir/" install
42