2018-02-10 11:45:37 +11:00
|
|
|
# Description: Virtual Terminal Emulator widget for use with GTK3
|
|
|
|
# URL: https://wiki.gnome.org/action/show/Apps/Terminal/VTE
|
|
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
2018-09-28 20:46:36 +10:00
|
|
|
# Depends on: gnutls gtk3 libpcre2 util-linux
|
2014-12-16 13:04:15 +00:00
|
|
|
|
2018-02-10 11:45:37 +11:00
|
|
|
name=vte3
|
2018-09-28 20:46:36 +10:00
|
|
|
version=0.54.1
|
2014-12-16 13:04:15 +00:00
|
|
|
release=1
|
2018-09-28 20:46:36 +10:00
|
|
|
source=(https://download.gnome.org/sources/vte/${version%.*}/vte-$version.tar.xz)
|
2014-12-16 13:04:15 +00:00
|
|
|
|
|
|
|
build() {
|
2018-02-10 12:20:54 +11:00
|
|
|
cd vte-$version
|
2014-12-17 16:44:46 +00:00
|
|
|
|
2018-02-10 12:20:54 +11:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--libexecdir=/usr/lib/vte \
|
|
|
|
--disable-static \
|
|
|
|
--disable-gtk-doc \
|
|
|
|
--enable-vala=no
|
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
|
|
|
|
rm -r $PKG/usr/share/{gtk-doc,locale}
|
2014-12-16 13:04:15 +00:00
|
|
|
}
|