From 425ef6861e04b6b3ace36f5357ea78a7efeb5891 Mon Sep 17 00:00:00 2001 From: gnastyle Date: Thu, 23 Feb 2017 23:14:35 +0100 Subject: [PATCH] vte: update to 0.28.2 --- vte/PKGBUILD | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/vte/PKGBUILD b/vte/PKGBUILD index 8a23e01..05a0de2 100644 --- a/vte/PKGBUILD +++ b/vte/PKGBUILD @@ -1,26 +1,26 @@ -# $Id: PKGBUILD 78606 2010-04-27 17:08:42Z jgc $ -# Maintainer: Jan de Groot - pkgname=vte -pkgver=0.26.2 -pkgrel=2 +pkgver=0.28.2 +pkgrel=1 pkgdesc="Virtual Terminal Emulator library" -arch=('i686' 'x86_64') +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/0.26/vte-${pkgver}.tar.bz2) -sha256sums=('f02c350340266c9515a98b8f69c72b4bdc53b352cd053624a63a7cb97ddec9bd') +source=(http://ftp.gnome.org/pub/GNOME/sources/vte/${pkgver%.*}/vte-${pkgver}.tar.xz) +sha256sums=('86cf0b81aa023fa93ed415653d51c96767f20b2d7334c893caba71e42654b0ae') build() { cd "${srcdir}/${pkgname}-${pkgver}" - PYTHON=python2 ./configure --prefix=/usr --sysconfdir=/etc \ + PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc \ --libexecdir=/usr/lib/vte \ --localstatedir=/var --disable-static \ - --enable-introspection + --enable-introspection --with-gtk=2.0 --disable-gnome-pty-helper make - make DESTDIR="${pkgdir}" install } +package(){ + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install +}