diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2021-04-19 23:43:27 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2021-04-19 23:43:27 -0500 |
commit | 76cdce8882de77eb484749581b5bf3fcf8b0715f (patch) | |
tree | b94a5e928bf3813957187562a7e25e2a4f52487b | |
parent | 1d6984522f2569993cab885f229c4b6bc5077f35 (diff) | |
download | slackbuilds-76cdce8882de77eb484749581b5bf3fcf8b0715f.tar.gz |
development/tea: Link qt5 by default
-rw-r--r-- | development/tea/README | 9 | ||||
-rw-r--r-- | development/tea/tea.SlackBuild | 2 |
2 files changed, 1 insertions, 10 deletions
diff --git a/development/tea/README b/development/tea/README index 872d26c587..b4c4450e6c 100644 --- a/development/tea/README +++ b/development/tea/README @@ -1,11 +1,2 @@ TEA is the text editor for UNIX-like systems and Windows. With an ultimate small size, TEA provides you hundreds of functions. - -TEA is by default built against qt4. In building TEA against qt5, -install qt5 (from slackbuilds.org) and run the script with the -following command: - -QT5=yes ./tea.SlackBuild - -poppler-qt5 is an optional dependency. It provides pdf text reading -capabilities. diff --git a/development/tea/tea.SlackBuild b/development/tea/tea.SlackBuild index 66e4126f65..bd1dfcd8fb 100644 --- a/development/tea/tea.SlackBuild +++ b/development/tea/tea.SlackBuild @@ -71,7 +71,7 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; -if [ ${QT5:-no} = yes ]; then +if [ ${QT5:-yes} = yes ]; then QMAKE=qmake-qt5 else QMAKE=qmake |