blob: 90c37971187720b77d8339e97337459a39febb8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# $Id: PKGBUILD 83915 2013-02-06 14:27:16Z 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.22
pkgrel=3
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")
options=('!libtool')
sha256sums=('901a35a7395ef10a80fb10b3ab63bae3871693a4e82d56388e9521a27877577e')
build() {
cd "$srcdir/$pkgname-$pkgver"
msg2 "Configuring..."
./configure --prefix=/usr
msg2 "Compiling..."
make
msg2 "Python2 fix..."
sed -i '0,/on/s//on2/' data/templates/files/main.py
msg2 "Fixing FS#10318..."
setconf geany.desktop MimeType ''
msg2 "Enabling syntax highlighting for PKGBUILD files..."
sed -i 's/Sh=/Sh=PKGBUILD;/' data/filetype_extensions.conf
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
}
# vim:set ts=2 sw=2 et:
|