#Maintainer: Dimitris Tzemos pkgname=vte3 pkgver=0.34.9 pkgrel=1dj source=("http://download.gnome.org/sources/vte/${pkgver::4}/vte-$pkgver.tar.xz" "fix_meta_alt_keybinding.patch") url="http://www.gnome.org/" docs=('AUTHORS' 'ChangeLog' 'COPYING*' 'HACKING' 'MAINTAINERS' 'NEWS' 'README*') slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "vte3 (terminal emulator widget)" "VTE3 is a terminal emulator widget for use with GTK+3. This package" "contains the VTE library and development files and a sample" "implementation (vte)." "homepage: http://www.gnome.org" ) build() { cd $startdir/src/vte-${pkgver} # https://bugzilla.gnome.org/show_bug.cgi?id=663779 patch -p1 < $SRC/fix_meta_alt_keybinding.patch ./configure \ --prefix=/usr \ --libdir=/usr/lib${LIBDIRSUFFIX} \ --sysconfdir=/etc \ --mandir=/usr/man \ --docdir=/usr/doc/vte-$pkgver \ --disable-static \ --enable-introspection \ --enable-gnome-pty-helper \ --with-gtk=3.0 \ --with-default-emulation=xterm \ --build=$arch-slackware-linux || exit 1 make -j $numjobs || return 1 make DESTDIR=$startdir/pkg/ install || return 1 # Remove this, it's included in the stock vte package: rm $PKG/usr/libexec/gnome-pty-helper }