blob: 08f887870c141ce5fc89017f9a8c633fbe56b0f3 (
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
|
# $Id: PKGBUILD 92017 2010-09-28 16:54:55Z ibiru $
# Maintainer: Jan de Groot <jgc@archlinux.org>
pkgname=gtksourceview2
pkgver=2.10.5
pkgrel=1
pkgdesc="A text widget adding syntax highlighting and more to GNOME"
arch=('i686' 'x86_64' 'mips64el')
license=('GPL')
depends=('gtk2>=2.22.0' 'libxml2>=2.7.7')
makedepends=('intltool' 'pkgconfig')
options=('!libtool')
url="http://www.gnome.org"
source=(http://ftp.gnome.org/pub/gnome/sources/gtksourceview/2.10/gtksourceview-${pkgver}.tar.bz2)
sha256sums=('c585773743b1df8a04b1be7f7d90eecdf22681490d6810be54c81a7ae152191e')
build() {
cd "${srcdir}/gtksourceview-${pkgver}"
sed -i 's#python#python2#' gtksourceview/language-specs/convert.py
./configure --prefix=/usr --sysconfdir=/etc \
--localstatedir=/var --disable-static
make
make DESTDIR="${pkgdir}" install
}
|