summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 80359055fb199fb3041207f9318081c4c64056d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Maintainer: youngunix <zagazaw2004 () gmail ()>
# {former}Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Contributor: eht16 <enrico.troeger@uvena.de>
# Contributor: Addict7 <nicolasfloquet@gmail.com>
 
pkgname=geany-plugins-git
pkgver=1.27.0.17.g6122e13
pkgrel=1
pkgdesc='Various plugins for Geany'
arch=('x86_64' 'i686')
url='http://plugins.geany.org/'
url='https://github.com/geany/geany-plugins'
license=('GPL')
depends=('geany-git' 'vte' 'lua' 'libwebkit' 'ctpl' 'gpgme' 'gtkspell' 'hicolor-icon-theme')
makedepends=('git' 'libtool' 'python' 'gpgme' 'ctpl' 'lua' 'intltool')
optdepends=('hspell: hebrew spell checker')
install="$pkgname.install"
provides=('geany-plugins')
conflicts=('geany-plugins-svn' 'geany-plugins')
source=('git://github.com/geany/geany-plugins.git')
md5sums=('SKIP')
 
pkgver() {
  cd geany-plugins
  git describe --tags | sed 's/-/./g'
}
 
build() {
  cd geany-plugins
  ./autogen.sh
  ./configure --prefix=/usr --disable-geanypy
  make build
}
 
package() {
  cd geany-plugins
  make install DESTDIR="$pkgdir"
}
 
# vim:set ts=2 sw=2 et: