The VTE package contains a termcap file implementation for terminal emulators.
This package is known to build and work properly using an LFS-11.1 platform.
Download (HTTP): https://gitlab.gnome.org/GNOME/vte/-/archive/0.66.2/vte-0.66.2.tar.bz2
Download MD5 sum: 0371944dfe5198272628214304765ae8
Download size: 492 KB
Estimated disk space required: 14 MB (with tests)
Estimated build time: 0.3 SBU (using parallelism=4; with tests)
GTK+-3.24.31, libxml2-2.9.13, and pcre2-10.39
ICU-70.1, GnuTLS-3.7.3, gobject-introspection-1.70.0, and Vala-0.54.7
FriBidi-1.0.11 and GTK-Doc-1.33.2
User Notes: https://wiki.linuxfromscratch.org/blfs/wiki/vte
Install VTE by running the following commands:
mkdir build && cd build && meson --prefix=/usr --buildtype=release -Dfribidi=false .. && ninja
To test the results, issue ninja test.
Now, as the root
user:
ninja install && rm -v /etc/profile.d/vte.*
--buildtype=release
:
Specify a buildtype suitable for stable releases of the package, as
the default may produce unoptimized binaries.
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 you 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