diff options
Diffstat (limited to 'community/geany/PKGBUILD')
-rw-r--r-- | community/geany/PKGBUILD | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/community/geany/PKGBUILD b/community/geany/PKGBUILD new file mode 100644 index 000000000..2e689dd5d --- /dev/null +++ b/community/geany/PKGBUILD @@ -0,0 +1,51 @@ +# $Id: PKGBUILD 91268 2013-05-20 18:58:27Z arodseth $ +# Maintainer: Alexander Rødseth <rodseth@gmail.com> +# Contributor: Angel Velasquez <angvp@archlinux.org> +# Contributor: Ionut Biru <ibiru@archlinux.ro> +# Contributor: William Rea <sillywilly@gmail.com> +# Contributor: Allan McRae <mcrae_allan@hotmail.com> + +pkgname=geany +pkgver=1.23.1 +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' + 'geany-plugins: various extra features' + 'python2') +install="$pkgname.install" +options=('!libtool') +source=("http://download.geany.org/$pkgname-$pkgver.tar.bz2") +sha256sums=('8815b16e59d8679ec359a1a5754fee05e77f7bca53083c939654bfc77d978fad') + +prepare() { + cd "$srcdir/$pkgname-$pkgver" + + # Python2 fix + sed -i '0,/on/s//on2/' data/templates/files/main.py + + # Syntax highlighting for PKGBUILD files + sed -i 's/Sh=/Sh=PKGBUILD;/' data/filetype_extensions.conf +} + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./configure --prefix=/usr + make + + # Fix for FS#10318 + setconf geany.desktop MimeType '' +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + + make DESTDIR="$pkgdir" install +} + +# vim:set ts=2 sw=2 et: |