diff options
Diffstat (limited to 'community/geany-plugins/PKGBUILD')
-rw-r--r-- | community/geany-plugins/PKGBUILD | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/community/geany-plugins/PKGBUILD b/community/geany-plugins/PKGBUILD new file mode 100644 index 000000000..f4becdd48 --- /dev/null +++ b/community/geany-plugins/PKGBUILD @@ -0,0 +1,36 @@ +# $Id: PKGBUILD 91272 2013-05-20 19:14:00Z arodseth $ +# Maintainer: Alexander Rødseth <rodseth@gmail.com> +# Contributor: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve> +# Contributor: djgera +# Contributor: Patrick Melo <patrick@patrickmelo.eti.br> + +pkgname=geany-plugins +pkgver=1.23 +pkgrel=3 +pkgdesc='Plugins for Geany' +arch=('x86_64' 'i686') +url='http://plugins.geany.org/' +license=('GPL') +depends=("geany>=$pkgver" 'gtkspell' 'webkitgtk2' 'ctpl' 'gpgme' 'vte' + 'desktop-file-utils' 'gtk-update-icon-cache' 'lua51') +makedepends=('intltool' 'vala' 'gdb' 'cppcheck') +optdepends=('hspell: hebrew spell checker') +options=('!libtool') +install="$pkgname.install" +source=("http://plugins.geany.org/$pkgname/$pkgname-$pkgver.tar.bz2") +sha256sums=('ff26860edd1cbaea88c73bd8c2bd02f9ba04046674f05d3696baf66582e2bf58') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./configure --prefix=/usr --libexecdir=/usr/lib + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + + make DESTDIR="$pkgdir" install +} + +# vim:set ts=2 sw=2 et: |