opt/vte3/Pkgfile

28 lines
686 B
Plaintext
Raw Normal View History

2018-02-10 01:45:37 +01: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
# Depends on: gtk3 gnutls libpcre2
2014-12-16 14:04:15 +01:00
2018-02-10 01:45:37 +01:00
name=vte3
2017-05-09 21:56:46 +02:00
version=0.48.2
2014-12-16 14:04:15 +01:00
release=1
2014-12-17 17:44:46 +01:00
source=(ftp://ftp.gnome.org/pub/gnome/sources/vte/${version%.*}/vte-$version.tar.xz \
vte-metamask.patch)
2014-12-16 14:04:15 +01:00
build() {
2014-12-17 17:44:46 +01:00
cd vte-$version
patch -R -p1 -i $SRC/vte-metamask.patch
2014-12-16 14:04:15 +01:00
./configure --prefix=/usr \
2014-12-17 17:44:46 +01:00
--libexecdir=/usr/lib/vte \
2014-12-16 14:04:15 +01:00
--disable-static \
--disable-gtk-doc \
--enable-vala=no
2014-12-16 14:04:15 +01:00
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/{gtk-doc,locale}
}