qterminal-0.8.0

Introduction to qterminal

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.

Package Information

qterminal Dependencies

Required

lxqt-build-tools-0.4.0 and qtermwidget-0.8.0

Optional

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

Installation of 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

Command Explanations

-DPULL_TRANSLATIONS=no: Removes the need for git-2.16.2, which would otherwise be requested to download the translation files.

Contents

Installed Program: qterminal
Installed Libraries: None
Installed Directories: /usr/share/doc/qterminal-0.8.0 (if the documentation is installed)

Short Descriptions

qterminal

is a Qt based lightweight terminal emulator.

Last updated on 2018-02-21 04:35:18 -0800