The VTE package contains a termcap file implementation for terminal emulators.
This package is known to build and work properly using an LFS 12.0 platform.
Download (HTTP): https://gitlab.gnome.org/GNOME/vte/-/archive/0.72.2/vte-0.72.2.tar.gz
Download MD5 sum: 1954cae9b70ce35bdf1f383b4ddc7d32
Download size: 620 KB
Estimated disk space required: 16 MB (with tests)
Estimated build time: 0.3 SBU (using parallelism=4; with tests)
GTK+-3.24.38, libxml2-2.10.4, and pcre2-10.42
ICU-73.2, GnuTLS-3.8.1, gobject-introspection-1.76.1, and Vala-0.56.11
Install VTE by running the following commands:
mkdir build && cd build && meson setup --prefix=/usr \ --buildtype=release \ -Dfribidi=false \ -D_systemd=false && ninja
If you have Gi-DocGen-2023.1 installed and wish to build the API documentation for this package, issue:
sed -e "/docdir =/s@\$@/ 'vte-0.72.2'@" \ -e "/fatal-warnings/d" \ -i ../doc/reference/meson.build && meson configure -Ddocs=true && 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.
-Dgtk4=true
: Add this switch to build
the GTK4 widget.