vte: moved from core to gtk, FS#1871

This commit is contained in:
Neofytos Kolokotronis 2017-02-23 16:42:49 +01:00
parent 0994f8d07d
commit 50fb4a52b2

26
vte/PKGBUILD Normal file
View File

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