mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-06 08:26:50 +01:00
development/tea: Updated for version 46.3.0.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
parent
36e3ca36b1
commit
37697cdd76
3 changed files with 12 additions and 10 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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=""
|
||||
|
|
Loading…
Reference in a new issue