network/slimjet: Updated for version 14.0.2.0.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
4548dc3b8a
commit
b6966ae925
|
@ -1,5 +1,3 @@
|
|||
slimjet (Chromium based web browser)
|
||||
|
||||
Slimjet is built on top of the Chromium open-source project on which
|
||||
Google Chrome is also based. It enjoys the same speed and reliablity
|
||||
provided by the underlying blink engine as Google Chrome. However, many
|
||||
|
@ -15,9 +13,11 @@ Google Chrome available from the Chrome web store.
|
|||
This SlackBuild does NOT attempt to compile slimjet from source, it
|
||||
only repackages the binaries that are provided by the developers.
|
||||
|
||||
The MD5SUM and VERSION numbers may be incorrect from time to time due
|
||||
to the developers' release scheme. If this occurs, you will have the
|
||||
latest release, but it will be numbered wrongly.
|
||||
This SlackBuild can also be incorrect from time to time due to the
|
||||
developers release scheme and how they don't number their releases, yet
|
||||
they archive them in numbered directories AFTER the next update is
|
||||
released. If this occurs, you will have the latest release, but it will
|
||||
be numbered wrong.
|
||||
|
||||
NOTE: Run the wrapper script "flashpeak-slimjet" from the terminal for
|
||||
the first time to enable the sand box (admin access required). After
|
||||
|
|
|
@ -1,9 +1,4 @@
|
|||
|
||||
if [ -x /usr/bin/update-desktop-database ]; then
|
||||
/usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
|
||||
fi
|
||||
|
||||
if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then
|
||||
if [ -x /usr/bin/gtk-update-icon-cache ]; then
|
||||
/usr/bin/gtk-update-icon-cache -f usr/share/icons/hicolor >/dev/null 2>&1
|
||||
fi
|
||||
fi
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for slimjet
|
||||
# Copyright 2017 Ed Ender <skaendo at excite dot com>
|
||||
# Copyright 2017 skaendo <skaendo at excite dot com>
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
|
@ -22,7 +22,7 @@
|
|||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=slimjet
|
||||
VERSION=${VERSION:-13.0.9.0}
|
||||
VERSION=${VERSION:-14.0.2.0}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
|
@ -39,13 +39,22 @@ TMP=${TMP:-/tmp/SBo}
|
|||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i586" ] || [ "$ARCH" = "i686" ]; then
|
||||
if [ "$ARCH" = "i586" ]; then
|
||||
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
SRCARCH=i386
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
SRCARCH=i386
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
LIBDIRSUFFIX="64"
|
||||
SRCARCH=amd64
|
||||
else
|
||||
echo "$ARCH is not supported."
|
||||
exit 1
|
||||
SLKCFLAGS="-O2"
|
||||
LIBDIRSUFFIX=""
|
||||
SRCARCH=i386
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
@ -103,12 +112,11 @@ find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | gr
|
|||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a license.txt $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/README > $PKG/install/README
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
||||
|
|
|
@ -115,7 +115,7 @@ X-Ayatana-Desktop-Shortcuts=NewWindow;NewIncognito
|
|||
|
||||
Name[en_US]=Slimjet Web Browser
|
||||
|
||||
[X-NewWindow Shortcut Group]
|
||||
[NewWindow Shortcut Group]
|
||||
Name=New Window
|
||||
Name[am]=አዲስ መስኮት
|
||||
Name[ar]=نافذة جديدة
|
||||
|
@ -170,7 +170,7 @@ Name[zh_TW]=開新視窗
|
|||
Exec=/usr/bin/flashpeak-slimjet
|
||||
TargetEnvironment=Unity
|
||||
|
||||
[X-NewIncognito Shortcut Group]
|
||||
[NewIncognito Shortcut Group]
|
||||
Name=New Incognito Window
|
||||
Name[ar]=نافذة جديدة للتصفح المتخفي
|
||||
Name[bg]=Нов прозорец „инкогнито“
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
PRGNAM="slimjet"
|
||||
VERSION="13.0.9.0"
|
||||
VERSION="14.0.2.0"
|
||||
HOMEPAGE="https://www.slimjet.com"
|
||||
DOWNLOAD="https://www.slimjetbrowser.com/release/slimjet_i386.tar.xz"
|
||||
MD5SUM="66d3601b32118113c9ec3120639bc941"
|
||||
MD5SUM="0b1afb554f5fb838f05518f04b50da0c"
|
||||
DOWNLOAD_x86_64="https://www.slimjetbrowser.com/release/slimjet_amd64.tar.xz"
|
||||
MD5SUM_x86_64="4a4fefde84c9ff9f46e71a2da314bcf1"
|
||||
MD5SUM_x86_64="4afc4e5d6090cc7302f394d897f50274"
|
||||
REQUIRES=""
|
||||
MAINTAINER="skaendo"
|
||||
EMAIL="skaendo at excite dot com"
|
||||
|
|
Loading…
Reference in New Issue