diff options
author | root <root@rshg054.dnsready.net> | 2011-10-25 23:14:56 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-10-25 23:14:56 +0000 |
commit | d03e905f54857600b3c36af9b221c34ccb11074f (patch) | |
tree | 6456a06bc5bed5a6083f02bb468392dc6ba6337e /community/geany-plugins | |
parent | 0d7bab226067a44a9f1b978924e8201a3fa60764 (diff) |
Tue Oct 25 23:14:56 UTC 2011
Diffstat (limited to 'community/geany-plugins')
-rw-r--r-- | community/geany-plugins/PKGBUILD | 39 | ||||
-rw-r--r-- | community/geany-plugins/geany-plugins.install | 13 |
2 files changed, 40 insertions, 12 deletions
diff --git a/community/geany-plugins/PKGBUILD b/community/geany-plugins/PKGBUILD index 61c64ab43..37d5af3d2 100644 --- a/community/geany-plugins/PKGBUILD +++ b/community/geany-plugins/PKGBUILD @@ -1,24 +1,39 @@ -# $Id: PKGBUILD 37244 2011-01-12 15:09:23Z angvp $ -# Maintainer: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve> +# $Id: PKGBUILD 57206 2011-10-24 12:59:03Z 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=0.20 +pkgver=0.21 pkgrel=1 -pkgdesc="The combined plugins release for Geany" -arch=('i686' 'x86_64') -url="http://plugins.geany.org" +pkgdesc="Combined plugins release for Geany" +arch=('x86_64' 'i686') +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') +depends=('geany' 'lua' 'gtkspell' 'libwebkit' 'hicolor-icon-theme' 'ctpl' 'gpgme') +makedepends=('intltool') +optdepends=('hspell: hebrew spell checker') +conflicts=('geany-plugins-svn') +install=geany-plugins.install +source=("http://plugins.geany.org/geany-plugins/${pkgname}-${pkgver}.tar.bz2") +md5sums=('22e106d7a026e720dd91feb79e44456f') build() { - cd ${srcdir}/$pkgname-$pkgver - ./configure --prefix=/usr --libexecdir=/usr/lib # Thx djgera + cd "${srcdir}/${pkgname}-${pkgver}" + + ./configure --prefix=/usr --libexecdir=/usr/lib make } package() { - cd ${srcdir}/$pkgname-$pkgver + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR=${pkgdir} install + rmdir \ + "${pkgdir}/usr/share/geany-plugins/devhelp" \ + "${pkgdir}/usr/share/doc/geany-plugins/devhelp" \ + "${pkgdir}/usr/share/geany-plugins/debugger" \ + "${pkgdir}/usr/share/doc/geany-plugins/debugger" } + +# 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..f26807673 --- /dev/null +++ b/community/geany-plugins/geany-plugins.install @@ -0,0 +1,13 @@ +post_upgrade() { + gtk-update-icon-cache -q -f -t /usr/share/icons/hicolor +} + +post_install() { + post_upgrade +} + +post_remove() { + post_upgrade +} + +# vim:set ts=2 sw=2 et: |