contrib/vte3-ng/Pkgfile

31 lines
701 B
Plaintext
Raw Normal View History

2018-02-10 02:49:33 +01:00
# Description: Enhanced Virtual Terminal Emulator widget for use with GTK3
# URL: https://github.com/thestinger/vte-ng
# Maintainer: Danny Rawlins, crux at romster dot me
2019-02-21 10:48:44 +01:00
# Depends on: gnutls gtk-doc gtk3 libpcre2 util-linux
2018-02-10 02:49:33 +01:00
name=vte3-ng
2019-02-21 10:48:44 +01:00
version=0.54.2
_version=$version.a
2018-02-10 02:49:33 +01:00
release=1
2019-02-21 10:48:44 +01:00
source=(https://github.com/thestinger/vte-ng/archive/$version/vte-ng-$_version.tar.gz)
2018-02-10 02:49:33 +01:00
build() {
cd vte-ng-$version
2019-02-21 10:48:44 +01:00
NOCONFIGURE=1 ./autogen.sh
2018-02-10 02:49:33 +01:00
2019-02-21 10:48:44 +01:00
./configure \
2018-02-10 02:49:33 +01:00
--prefix=/usr \
--libexecdir=/usr/lib/vte \
2019-02-21 10:48:44 +01:00
--enable-static \
2018-02-10 02:49:33 +01:00
--disable-gtk-doc \
2019-02-21 10:48:44 +01:00
--disable-vala \
--disable-introspection \
--disable-glade-catalogue
2018-02-10 02:49:33 +01:00
make
make DESTDIR=$PKG install
2019-02-21 10:48:44 +01:00
rm -r $PKG/usr/{share/locale,etc/profile.d/vte.sh}
2018-02-10 02:49:33 +01:00
}