diff options
author | Isaac Yu <isaacyu@isaacyu1.com> | 2018-11-15 21:12:17 +0000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2018-11-17 18:42:46 +0700 |
commit | 37697cdd760beb61f507840e7a4c41d96e99792d (patch) | |
tree | d5d25ba0f0c9d3f533740701e8942a4dfe0357a1 | |
parent | 36e3ca36b110437d5ab91efde47fd7ca5a268f1c (diff) | |
download | slackbuilds-37697cdd760beb61f507840e7a4c41d96e99792d.tar.gz |
development/tea: Updated for version 46.3.0.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
-rw-r--r-- | development/tea/README | 7 | ||||
-rw-r--r-- | development/tea/tea.SlackBuild | 9 | ||||
-rw-r--r-- | development/tea/tea.info | 6 |
3 files changed, 12 insertions, 10 deletions
diff --git a/development/tea/README b/development/tea/README index 59e83a18d1..3d1f287af3 100644 --- a/development/tea/README +++ b/development/tea/README @@ -1,7 +1,8 @@ TEA is the text editor for UNIX-like systems and Windows. With an ultimate small size, TEA provides you hundreds of functions. -If you prefer to build TEA against Qt5 rather than Qt4, install -qt5 (available from SlackBuilds.org) and run the script like that: +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: -USE_QT5=yes ./tea.SlackBuild +QT5=yes ./tea.SlackBuild diff --git a/development/tea/tea.SlackBuild b/development/tea/tea.SlackBuild index dda5434751..37a87bf30f 100644 --- a/development/tea/tea.SlackBuild +++ b/development/tea/tea.SlackBuild @@ -24,7 +24,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=tea -VERSION=${VERSION:-45.0.2} +VERSION=${VERSION:-46.3.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -70,12 +70,13 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; -if [ ${USE_QT5:-no} = yes ]; then - qmake-qt5 "PREFIX=/usr/bin" "QMAKE_CXXFLAGS+=$SLKCFLAGS" "QMAKE_CFLAGS+=$SLKCFLAGS" +if [ ${QT5:-no} = yes ]; then + QMAKE=qmake-qt5 else - qmake "PREFIX=/usr/bin" "QMAKE_CXXFLAGS+=$SLKCFLAGS" "QMAKE_CFLAGS+=$SLKCFLAGS" + QMAKE=qmake fi +$QMAKE "PREFIX=/usr/bin" "QMAKE_CXXFLAGS+=$SLKCFLAGS" "QMAKE_CFLAGS+=$SLKCFLAGS" make make install INSTALL_ROOT=$PKG diff --git a/development/tea/tea.info b/development/tea/tea.info index ff202c58f3..53ba9d552f 100644 --- a/development/tea/tea.info +++ b/development/tea/tea.info @@ -1,8 +1,8 @@ PRGNAM="tea" -VERSION="45.0.2" +VERSION="46.3.0" HOMEPAGE="http://semiletov.org/tea/" -DOWNLOAD="http://semiletov.org/tea/dloads/tea-45.0.2.tar.bz2" -MD5SUM="cdb7235066340f3f940d6f8d2a43ceec" +DOWNLOAD="http://semiletov.org/tea/dloads/tea-46.3.0.tar.bz2" +MD5SUM="7a513005545a66b796808b0029eeccd5" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="" |