diff options
author | root <root@rshg054.dnsready.net> | 2013-03-11 00:04:02 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-03-11 00:04:02 -0700 |
commit | ef17357a9745e05e301b724d13a341067ddb3d5b (patch) | |
tree | 676472a92698122808799ec6539e332e4cbb9ce4 /community/geany | |
parent | 6ee08d6a9217906f2ef84f70923d3d362d4b40ad (diff) |
Mon Mar 11 00:04:02 PDT 2013
Diffstat (limited to 'community/geany')
-rw-r--r-- | community/geany/PKGBUILD | 27 |
1 files changed, 15 insertions, 12 deletions
diff --git a/community/geany/PKGBUILD b/community/geany/PKGBUILD index 90c379711..b6a270944 100644 --- a/community/geany/PKGBUILD +++ b/community/geany/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 83915 2013-02-06 14:27:16Z arodseth $ +# $Id: PKGBUILD 86000 2013-03-10 22:54:45Z arodseth $ # Maintainer: Alexander Rødseth <rodseth@gmail.com> # Contributor: Angel Velasquez <angvp@archlinux.org> # Contributor: Ionut Biru <ibiru@archlinux.ro> @@ -6,32 +6,35 @@ # Contributor: Allan McRae <mcrae_allan@hotmail.com> pkgname=geany -pkgver=1.22 -pkgrel=3 +pkgver=1.23 +pkgrel=1 pkgdesc='Fast and lightweight IDE' arch=('x86_64' 'i686') url="http://www.geany.org/" license=('GPL') depends=('gtk2' 'hicolor-icon-theme' 'desktop-file-utils') makedepends=('perlxml' 'setconf' 'intltool') -optdepends=('vte: for terminal support' 'python2') -install=geany.install -source=("http://download.geany.org/$pkgname-$pkgver.tar.bz2") +optdepends=('vte: for terminal support' + 'geany-plugins: various extra features' + 'python2') +install="$pkgname.install" options=('!libtool') -sha256sums=('901a35a7395ef10a80fb10b3ab63bae3871693a4e82d56388e9521a27877577e') +source=("http://download.geany.org/$pkgname-$pkgver.tar.bz2") +sha256sums=('cdd4a772694803c837ae59e56f7bdc2faba174509317211f522e7d25dfcbe8b0') build() { cd "$srcdir/$pkgname-$pkgver" - msg2 "Configuring..." ./configure --prefix=/usr - msg2 "Compiling..." make - msg2 "Python2 fix..." + + # Python2 fix sed -i '0,/on/s//on2/' data/templates/files/main.py - msg2 "Fixing FS#10318..." + + # Fix for FS#10318 setconf geany.desktop MimeType '' - msg2 "Enabling syntax highlighting for PKGBUILD files..." + + # Syntax highlighting for PKGBUILD files sed -i 's/Sh=/Sh=PKGBUILD;/' data/filetype_extensions.conf } |