The VTE package contains a termcap file implementation for terminal emulators.
This package is known to build and work properly using an LFS-11.0 platform.
Download (HTTP): https://gitlab.gnome.org/GNOME/vte/-/archive/0.64.2/vte-0.64.2.tar.gz
Download MD5 sum: 692a2656eaf84165e2c8ffe9d84137d9
Download size: 604 KB
Estimated disk space required: 10 MB (with tests)
Estimated build time: 0.3 SBU (using parallelism=4; with tests)
GTK+-3.24.30, libxml2-2.9.12, and pcre2-10.37
ICU-69.1, GnuTLS-3.7.2, gobject-introspection-1.68.0, and Vala-0.52.5
FriBidi-1.0.9, GTK-Doc-1.33.2, and GTK-4.4.0
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 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