opt/vte3/Pkgfile
2018-02-10 11:45:56 +11:00

28 lines
686 B
Plaintext

# 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
# Depends on: gtk3 gnutls libpcre2
name=vte3
version=0.48.2
release=1
source=(ftp://ftp.gnome.org/pub/gnome/sources/vte/${version%.*}/vte-$version.tar.xz \
vte-metamask.patch)
build() {
cd vte-$version
patch -R -p1 -i $SRC/vte-metamask.patch
./configure --prefix=/usr \
--libexecdir=/usr/lib/vte \
--disable-static \
--disable-gtk-doc \
--enable-vala=no
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/{gtk-doc,locale}
}