The VTE package contains a termcap file implementation for terminal emulators.
This package is known to build and work properly using an LFS-7.10 platform.
Download (HTTP): http://ftp.gnome.org/pub/gnome/sources/vte/0.44/vte-0.44.2.tar.xz
Download (FTP): ftp://ftp.gnome.org/pub/gnome/sources/vte/0.44/vte-0.44.2.tar.xz
Download MD5 sum: eca8f8a9d9f9bb8e9d592d0acfeec015
Download size: 952 KB
Estimated disk space required: 21 MB (with tests)
Estimated build time: 0.5 SBU (with tests)
GnuTLS-3.5.3, GTK-Doc-1.25, Vala-0.32.1, and Glade
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/vte
Install VTE by running the following commands:
sed -i '/Werror/d' configure.ac && autoreconf && ./configure --prefix=/usr \ --sysconfdir=/etc \ --disable-static \ --enable-introspection && make
To test the results, issue make check.
Now, as the root
user:
make install
sed ... configure.ac: This command removes -Werror options that prevent the build from completing.
--enable-introspection
: This switch
enables Gobject Introspection
bindings. Remove if you don't have gobject-introspection-1.48.0
installed.
--disable-static
: This
switch prevents installation of static versions of the libraries.
--enable-gtk-doc
: Use this parameter if
GTK-Doc is installed and you wish
to rebuild and install the API documentation.
Last updated on 2016-08-29 13:59:18 -0700