1 # Contributor: Andrea Cimitan <andrea.cimitan@gmail.com>
6 pkgdesc="A GNOME Twitter client using OpenGL with Clutter"
8 url="http://live.gnome.org/Tweet/"
10 depends=('clutter=0.6.4' 'clutter-cairo' 'clutter-gtk' 'gtk2' 'json-glib')
11 makedepends=('autoconf' 'automake' 'git' 'pkgconfig')
18 _gitroot="git://github.com/ebassi/tweet.git"
24 if [ -d ${_gitname} ]; then
25 (cd ${_gitname} && git-pull origin)
29 msg "GIT checkout done or server timeout"
30 msg "Starting make..."
32 rm -rf ${_gitname}-build
33 cp -r ${_gitname} ${_gitname}-build
36 ./autogen.sh || return 1
37 ./configure --prefix=/usr || return 1
39 make DESTDIR=${pkgdir} install || return 1