summaryrefslogtreecommitdiff
path: root/community/geany/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
committerroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
commitdee9f17b595ea903a982d31d1124b302bb17e2ff (patch)
tree295fdab78e28e1952fbc13ce824d57c88ede4e3b /community/geany/PKGBUILD
parent380530d02a5449fdef97b63b394a6743c3de0092 (diff)
Wed Jul 17 00:58:51 PDT 2013
Diffstat (limited to 'community/geany/PKGBUILD')
-rw-r--r--community/geany/PKGBUILD51
1 files changed, 0 insertions, 51 deletions
diff --git a/community/geany/PKGBUILD b/community/geany/PKGBUILD
deleted file mode 100644
index 2e689dd5d..000000000
--- a/community/geany/PKGBUILD
+++ /dev/null
@@ -1,51 +0,0 @@
-# $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: