The qterminal package contains a Qt widget based terminal emulator for Qt with support for multiple tabs.
This package is known to build and work properly using an LFS-8.1 platform.
Download (HTTP): https://github.com/lxde/qterminal/releases/download/0.7.1/qterminal-0.7.1.tar.xz
Download MD5 sum: 6c27ac08df0b6c8322729e0ad981873d
Download size: 100 KB
Estimated disk space required: 3.7 MB (add 1.3 MB for the API documentation)
Estimated build time: 0.3 SBU (with the API documentation)
liblxqt-0.11.1 and qtermwidget-0.7.1
Doxygen-1.8.13 and texlive-20170524 (or install-tl-unx), for documentation, and git-2.14.1 (to download translation files) or lxqt-l10n-0.11.2 (to add localization files)
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/qterminal
Install qterminal by running the following commands:
mkdir -v build &&
cd       build &&
cmake -DCMAKE_INSTALL_PREFIX=$LXQT_PREFIX \
      -DCMAKE_BUILD_TYPE=Release          \
      -DPULL_TRANSLATIONS=no              \
      ..       &&
LIBRARY_PATH=$LXQT_PREFIX/lib make
        If you have Doxygen-1.8.13 installed, and wish to create the API documentation, issue:
doxygen ../Doxyfile
The html API documentation has been generated with the previous command. Now, if you also have texlive-20170524 (or install-tl-unx) installed, and wish to create the pdf API reference manual, issue:
make -C docs/latex
This package does not come with a test suite.
          Now, as the root user:
        
make install
          To install the html API documentation, if you opted to generate it,
          issue, as the root user:
        
install -v -m755 -d /usr/share/doc/qterminal-0.7.1/{html,pdf} &&
cp -vr docs/html/* /usr/share/doc/qterminal-0.7.1/html
        
          The pdf API reference manual can be installed with, as the
          root user:
        
install -v -m644    docs/latex/refman.pdf \
                    /usr/share/doc/qterminal-0.7.1/pdf
        
          If you installed in /opt, again as the root user:
        
if [ "$LXQT_PREFIX" != /usr ]; then
  ln -svf $LXQT_PREFIX/share/applications/qterminal.desktop \
          /usr/share/applications
  ln -svf $LXQT_PREFIX/share/applications/qterminal_drop.desktop \
          /usr/share/applications
fi
      
          LIBRARY_PATH=$LXQT_PREFIX/lib: This
          environment variable is needed for the linker to find a required
          library.
        
          -DPULL_TRANSLATIONS=no:
          Removes the need for git-2.14.1, which would otherwise be
          requested to download the translation files.
        
Last updated on 2017-08-31 08:29:49 -0700