diff options
author | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
commit | 7a65a910b77ad191d69881098c47f9b0c852d92e (patch) | |
tree | 9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/geany-plugins | |
parent | 60da6abff6c9577a783d72865f11de7a585e912e (diff) |
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/geany-plugins')
-rw-r--r-- | community/geany-plugins/PKGBUILD | 36 | ||||
-rw-r--r-- | community/geany-plugins/geany-plugins.install | 14 |
2 files changed, 50 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: diff --git a/community/geany-plugins/geany-plugins.install b/community/geany-plugins/geany-plugins.install new file mode 100644 index 000000000..c7a5da359 --- /dev/null +++ b/community/geany-plugins/geany-plugins.install @@ -0,0 +1,14 @@ +post_install() { + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor + update-desktop-database -q +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} + +# vim:set ts=2 sw=2 et: |