summaryrefslogtreecommitdiff
path: root/community/geany-plugins
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
commit415856bdd4f48ab4f2732996f0bae58595092bbe (patch)
treeede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/geany-plugins
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/geany-plugins')
-rw-r--r--community/geany-plugins/PKGBUILD24
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
+}