gtk/vte/PKGBUILD
2017-02-23 23:14:35 +01:00

27 lines
766 B
Bash

pkgname=vte
pkgver=0.28.2
pkgrel=1
pkgdesc="Virtual Terminal Emulator library"
arch=('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/${pkgver%.*}/vte-${pkgver}.tar.xz)
sha256sums=('86cf0b81aa023fa93ed415653d51c96767f20b2d7334c893caba71e42654b0ae')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc \
--libexecdir=/usr/lib/vte \
--localstatedir=/var --disable-static \
--enable-introspection --with-gtk=2.0 --disable-gnome-pty-helper
make
}
package(){
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
}