diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2013-03-11 08:16:23 +0100 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2013-03-11 08:16:23 +0100 |
commit | 40ece75655aebe0dd951a0489ed2111f1c27f8a8 (patch) | |
tree | 77e41350cb98db3c5b181532d02c69f8fbad598f /community/geany/PKGBUILD | |
parent | fb8b936c2a92c0d645a460202c87c0a24569991e (diff) | |
parent | ef17357a9745e05e301b724d13a341067ddb3d5b (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts:
community/fcitx-mozc/PKGBUILD
community/geany-plugins/PKGBUILD
community/kyotocabinet/PKGBUILD
community/sysstat/PKGBUILD
core/openldap/PKGBUILD
Diffstat (limited to 'community/geany/PKGBUILD')
-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 2ebf57afe..516ee77b2 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=('i686' 'x86_64' 'mips64el') 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 } |