1 # Maintainer: Alexander Rødseth <rodseth@gmail.com>
2 # Contributor: eht16 <enrico.troeger@uvena.de>
3 # Contributor: Addict7 <nicolasfloquet@gmail.com>
4 pkgname=geany-plugins-git
7 pkgdesc="Various plugins for Geany"
9 url="http://plugins.geany.org/"
11 depends=('geany>=0.21' 'vte' 'lua' 'libwebkit' 'ctpl' 'gpgme' 'gtkspell' 'hicolor-icon-theme')
12 makedepends=('git' 'libtool' 'python' 'gpgme' 'ctpl' 'lua')
13 optdepends=('hspell: hebrew spell checker')
14 install=geany-plugins.install
15 provides=('geany-plugins')
16 conflicts=('geany-plugins-svn' 'geany-plugins')
17 _gitroot="git://github.com/geany/geany-plugins.git"
18 _gitname="geany-plugins"
23 msg "Connecting to the $_gitname git repository..."
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"
33 rm -rf $_gitname-build
34 git clone $_gitname $_gitname-build
38 ./waf configure --prefix=/usr --libexecdir=/usr/lib
46 ./waf --destdir="$pkgdir" install
49 # vim:set ts=2 sw=2 et: