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.2 platform.
Download (HTTP): https://github.com/lxde/qterminal/releases/download/0.8.0/qterminal-0.8.0.tar.xz
Download MD5 sum: 1ce5911e0959da75e6742f10a36b73e4
Download size: 102 KB
Estimated disk space required: 6.3 MB (add 1.3 MB for the API documentation)
Estimated build time: 0.3 SBU (with the API documentation)
lxqt-build-tools-0.4.0 and qtermwidget-0.8.0
Doxygen-1.8.14 and texlive-20170524 (or install-tl-unx), for documentation, and git-2.16.2 (to download translation files) or lxqt-l10n-0.12.0 (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              \
      ..       &&
make
        If you have Doxygen-1.8.14 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.8.0/{html,pdf} &&
cp -vr docs/html/* /usr/share/doc/qterminal-0.8.0/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.8.0/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
      
          -DPULL_TRANSLATIONS=no:
          Removes the need for git-2.16.2, which would otherwise be
          requested to download the translation files.
        
Last updated on 2018-02-21 04:35:18 -0800