contrib/vte3/Pkgfile

32 lines
796 B
Plaintext
Raw Normal View History

2014-11-08 16:20:22 +01:00
# Description: Virtual Terminal Emulator widget for use with GTK3.
# URL: http://developer.gnome.org/arch/gnome/widgets/vte.html
2014-11-10 13:28:07 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
# Packager: Danny Rawlins, crux at romster dot me
2017-11-01 13:35:12 +01:00
# Depends on: gtk3 util-linux vala
2014-11-08 16:20:22 +01:00
name=vte3
2014-11-08 16:24:40 +01:00
version=0.38.1
release=1
2014-11-08 16:20:22 +01:00
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}
}