core/vte/PKGBUILD

27 lines
779 B
Bash
Raw Normal View History

2010-05-17 15:50:50 +08:00
# $Id: PKGBUILD 78606 2010-04-27 17:08:42Z jgc $
2010-03-14 23:48:48 +08:00
# Maintainer: Jan de Groot <jgc@archlinux.org>
pkgname=vte
2011-04-06 19:34:00 +08:00
pkgver=0.26.2
2012-11-01 08:40:31 +08:00
pkgrel=2
2010-03-14 23:48:48 +08:00
pkgdesc="Virtual Terminal Emulator library"
arch=('i686' 'x86_64')
license=('LGPL')
2011-04-06 19:34:00 +08:00
depends=('gtk2>=2.22.0')
2010-03-14 23:48:48 +08:00
options=('!libtool')
2011-04-06 19:34:00 +08:00
makedepends=('pygtk>=2.22.0' 'intltool' 'gobject-introspection')
2010-03-14 23:48:48 +08:00
url="http://www.gnome.org"
2011-04-06 19:34:00 +08:00
source=(http://ftp.gnome.org/pub/GNOME/sources/vte/0.26/vte-${pkgver}.tar.bz2)
sha256sums=('f02c350340266c9515a98b8f69c72b4bdc53b352cd053624a63a7cb97ddec9bd')
2010-03-14 23:48:48 +08:00
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
2011-04-06 19:34:00 +08:00
PYTHON=python2 ./configure --prefix=/usr --sysconfdir=/etc \
2010-03-14 23:48:48 +08:00
--libexecdir=/usr/lib/vte \
2011-04-06 19:34:00 +08:00
--localstatedir=/var --disable-static \
--enable-introspection
make
make DESTDIR="${pkgdir}" install
2010-03-14 23:48:48 +08:00
}
2011-04-06 19:34:00 +08:00