development/zeal: Updated for version 0.4.0.

Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
Ricardo J. Barberis 2017-09-03 22:49:04 +01:00 committed by David Spencer
parent b9e85c0795
commit 4b8e31c0e3
4 changed files with 14 additions and 25 deletions

View file

@ -13,4 +13,7 @@ available for Linux and Windows.
After installing Zeal go to File -> Options -> Docsets to browse and
download docsets.
To disable the small ad on Zeal's home page go to Edit -> Preferences ->
Content -> Disable advertisement on the welcome page.
All documentation available for Dash is also available for Zeal.

View file

@ -1,14 +0,0 @@
https://github.com/zealdocs/zeal/issues/376
https://github.com/zealdocs/zeal/issues/380
--- a/src/main.cpp 2015-04-19 23:08:52.000000000 +0000
+++ b/src/main.cpp 2015-08-18 22:36:56.408596690 +0000
@@ -3,6 +3,7 @@
#include <QApplication>
#include <QCommandLineParser>
+#include <QDataStream>
#include <QDir>
#include <QLocalSocket>
#include <QStandardPaths>

View file

@ -2,7 +2,7 @@
# Slackware build script for zeal
# Copyright 2015 Ricardo J. Barberis (ricardo.barberis@gmail.com)
# Copyright 2015-2017 Ricardo J. Barberis <ricardo.barberis@gmail.com>
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -23,13 +23,13 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=zeal
VERSION=${VERSION:-0.1.1}
BUILD=${BUILD:-3}
VERSION=${VERSION:-0.4.0}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i486 ;;
i?86) ARCH=i586 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac
@ -40,8 +40,8 @@ TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
if [ "$ARCH" = "i586" ]; then
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
@ -60,7 +60,8 @@ rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
tar xvf $CWD/v$VERSION.tar.gz || tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
cd $PRGNAM-$VERSION
chown -R root:root .
find -L . \
@ -69,7 +70,6 @@ find -L . \
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
patch -p1 < $CWD/qt5.patch
export ZEAL_VERSION=${VERSION}
mkdir -p build
cd build

View file

@ -1,8 +1,8 @@
PRGNAM="zeal"
VERSION="0.1.1"
VERSION="0.4.0"
HOMEPAGE="https://zealdocs.org/"
DOWNLOAD="https://github.com/zealdocs/zeal/archive/v0.1.1.tar.gz"
MD5SUM="b2ccf1bc420c1d8f3f57092a7ca8873f"
DOWNLOAD="https://github.com/zealdocs/zeal/archive/v0.4.0/zeal-0.4.0.tar.gz"
MD5SUM="6bbeb867d9eb2dea3e768cd320662f49"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="qt5-webkit"