diff options
Diffstat (limited to 'community/geany-plugins')
-rw-r--r-- | community/geany-plugins/PKGBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/community/geany-plugins/PKGBUILD b/community/geany-plugins/PKGBUILD new file mode 100644 index 000000000..61c64ab43 --- /dev/null +++ b/community/geany-plugins/PKGBUILD @@ -0,0 +1,24 @@ +# $Id: PKGBUILD 37244 2011-01-12 15:09:23Z angvp $ +# Maintainer: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve> +# Contributor: Patrick Melo <patrick@patrickmelo.eti.br> +pkgname=geany-plugins +pkgver=0.20 +pkgrel=1 +pkgdesc="The combined plugins release for Geany" +arch=('i686' 'x86_64') +url="http://plugins.geany.org" +license=('GPL') +depends=('geany' 'lua' 'gtkspell' 'enchant' 'intltool') +source=(http://plugins.geany.org/geany-plugins/$pkgname-$pkgver.tar.bz2) +md5sums=('94bc4901217641a07f840d92179643b0') + +build() { + cd ${srcdir}/$pkgname-$pkgver + ./configure --prefix=/usr --libexecdir=/usr/lib # Thx djgera + make +} + +package() { + cd ${srcdir}/$pkgname-$pkgver + make DESTDIR=${pkgdir} install +} |