forked from ports/contrib
32 lines
812 B
Plaintext
32 lines
812 B
Plaintext
# Description: Virtual Terminal Emulator widget for use with GTK3.
|
|
# URL: http://developer.gnome.org/arch/gnome/widgets/vte.html
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Packager: Danny Rawlins, crux at romster dot me
|
|
# Depends on: gtk3 util-linux xorg-libxdamage vala
|
|
|
|
name=vte3
|
|
version=0.38.1
|
|
release=1
|
|
source=(http://download.gnome.org/sources/vte/${version::4}/vte-$version.tar.xz
|
|
expose_select_text.patch)
|
|
|
|
build() {
|
|
cd vte-$version
|
|
|
|
# https://github.com/thestinger/termite/blob/master/expose_select_text.patch
|
|
patch -p1 -i $SRC/expose_select_text.patch
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--libexecdir=/usr/lib/vte \
|
|
--enable-introspection=yes \
|
|
--disable-nls \
|
|
--disable-gtk-doc-html
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/{gtk-doc,locale}
|
|
}
|