1 # Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
2 pkgname=libinfinity-git
5 pkgdesc="An implementation of the Infininote protocol written in GObject-based C"
7 url="http://gobby.0x539.de"
9 depends=('gnutls' 'gsasl' 'gtk-doc' 'glib2' 'gob2' 'libxml++' 'gtk2')
12 #provides=('libinfinity')
13 #conflicts=('libinfinity')
17 _gitroot=git://git.0x539.de/git/infinote.git
22 msg "Connecting to git.0x539.de GIT server..."
24 if [ -d ${srcdir}/$_gitname ] ; then
25 cd $_gitname && git pull origin
26 msg "The local files are updated."
31 msg "GIT checkout done or server timeout"
32 msg "Starting make..."
34 git clone $_gitname $_gitname-build
35 cd ${srcdir}/$_gitname-build
37 ./autogen.sh --prefix=/usr || return 1
39 make DESTDIR="${pkgdir}" install || return 1
42 # vim:set ts=2 sw=2 et: