As the name suggests, the qtermwidget is a terminal widget for Qt.
This package is known to build and work properly using an LFS-7.10 platform.
Download (HTTP): https://github.com/qterminal/qtermwidget/releases/download/0.6.0/qtermwidget-0.6.0.tar.xz
Download MD5 sum: 763ce418ef6b7167cea6c01e3a97f5f4
Download size: 156 KB
Estimated disk space required: 5.1 MB
Estimated build time: 0.2 SBU
CMake-3.6.1, and Qt-5.7.0
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/qtermwidget
Install qtermwidget by running the following commands:
mkdir -v build &&
cd       build &&
cmake -DCMAKE_BUILD_TYPE=Release  \
      -DCMAKE_INSTALL_PREFIX=/usr \
      -DCMAKE_INSTALL_LIBDIR=lib  \
      -DBUILD_DESIGNER_PLUGIN=0   \
      -DUSE_QT5=true              \
      ..       &&
make
        
          The choice of /usr for prefix is due
          to the general characteristics of this program, which can be used
          without LXQt.
        
This package does not come with a test suite.
          Now, as the root user:
        
make install
          -DBUILD_DESIGNER_PLUGIN=0:
          This switch is necessary, because building the Qt designer plugin
          is not supported for Qt5 yet.
        
          -DUSE_QT5=true: This switch
          is used in order to build this application linked to Qt5.
        
Last updated on 2016-08-27 13:19:14 -0700