The VTE package contains a termcap file implementation for terminal emulators.
This package is known to build and work properly using an LFS-10.1 platform.
Download (HTTP): https://download.gnome.org/sources/vte/0.62/vte-0.62.3.tar.xz
Download (FTP): ftp://ftp.acc.umu.se/pub/gnome/sources/vte/0.62/vte-0.62.3.tar.xz
Download MD5 sum: 234c80d99b7200ac39734f77366da822
Download size: 440 KB
Estimated disk space required: 12 MB (with tests, 9.7MB without tests)
Estimated build time: 0.5 SBU (using parallelism=4; with tests)
GTK+-3.24.25, libxml2-2.9.10, and pcre2-10.36
ICU-68.2, GnuTLS-3.7.0, gobject-introspection-1.66.1, and Vala-0.50.3
FriBidi-1.0.9, GTK-Doc-1.33.2, and GTK+-4
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/vte
Install VTE by running the following commands:
mkdir build && cd build && meson --prefix=/usr -Dfribidi=false -D_systemd=false .. && ninja
To test the results, issue ninja test.
Now, as the root
user:
ninja install && rm -v /etc/profile.d/vte.*
rm -v /etc/profile.d/vte.*: This command removes two files installed in /etc/profile.d that have no use on a LFS system.
-Dfribidi=false
: Omit this
switch if want to enable bidirectional capabilities.
-Dgnutls=false
: Add this switch if you
do not want to enable GnuTLS support.
-Dvapi=false
: Add this switch if you do
not want to enable vala bindings.
-Ddocs=true
: Add this switch if wish to
build the documentation.
Last updated on 2021-02-23 04:28:57 -0800