diff options
-rw-r--r-- | network/browsh/README | 13 | ||||
-rw-r--r-- | network/browsh/browsh.SlackBuild | 96 | ||||
-rw-r--r-- | network/browsh/browsh.desktop | 11 | ||||
-rw-r--r-- | network/browsh/browsh.info | 14 | ||||
-rw-r--r-- | network/browsh/browsh.png | bin | 0 -> 9427 bytes | |||
-rw-r--r-- | network/browsh/doinst.sh | 12 | ||||
-rw-r--r-- | network/browsh/slack-desc | 19 |
7 files changed, 165 insertions, 0 deletions
diff --git a/network/browsh/README b/network/browsh/README new file mode 100644 index 0000000000..e40fe548ac --- /dev/null +++ b/network/browsh/README @@ -0,0 +1,13 @@ +Browsh is a fully-modern text-based browser. It renders anything that +a modern browser can; HTML5, CSS3, JS, video and even WebGL. +Its main purpose is to be run on a remote server and accessed via +SSH/Mosh or the in-browser HTML service in order to significantly +reduce bandwidth and thus both increase browsing speeds and decrease +bandwidth costs. + +Browsh is available as a single static binary on all major platforms. +The only dependency is a recent 57+ version of Firefox. + +Pressing F1 opens the documentation, essential to use the browser. + +NOTE: This script requires network connection during build. diff --git a/network/browsh/browsh.SlackBuild b/network/browsh/browsh.SlackBuild new file mode 100644 index 0000000000..57f45d7e31 --- /dev/null +++ b/network/browsh/browsh.SlackBuild @@ -0,0 +1,96 @@ +#!/bin/bash + +# Slackware build script for browsh + +# Copyright 2025 Antonio Leal, Porto Salvo, Oeiras, Portugal +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +cd "$(dirname "$0")" ; CWD=$(pwd) + +PRGNAM=browsh +VERSION=${VERSION:-1.8.3} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +PKGTYPE=${PKGTYPE:-tgz} +GOTARBALL=go1.25.1.linux-amd64 + +ARCH="${ARCH:-$(uname -m)}" +if [ "$ARCH" != "x86_64" ]; then + echo "$ARCH is not supported for $PRGNAM-$VERSION." + exit 1; +fi + +if [ -n "${PRINT_PACKAGE_NAME}" ]; then + echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" + exit 0 +fi + +TMP="${TMP:-/tmp/SBo}" +PKG="$TMP/package-$PRGNAM" +OUTPUT="${OUTPUT:-/tmp}" + +set -e +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION go + +tar xvfz $CWD/$GOTARBALL.tar.gz +tar xvfz $CWD/$PRGNAM-$VERSION.tar.gz + +cd $PRGNAM-$VERSION +chown -R root:root . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +GOPATH=$TMP/$PRGNAM-$VERSION/go +mkdir -p $GOPATH/src/github.com/browsh-org/$PRGNAM +interfacer=$GOPATH/src/github.com/browsh-org/$PRGNAM/interfacer +mkdir -p $interfacer/src/$PRGNAM +cp $CWD/$PRGNAM-$VERSION.xpi interfacer/src/browsh/browsh.xpi + +cd interfacer +webextension="src/browsh/browsh.xpi" +$TMP/go/bin/go build \ + -x -modcacherw \ + -gcflags "all=-trimpath=$GOPATH" \ + -asmflags "all=-trimpath=$GOPATH" \ + -o $PRGNAM ./cmd/browsh + +mkdir -p $PKG/usr/bin $PKG/usr/share/applications $PKG/usr/share/pixmaps +install -Dvm755 browsh $PKG/usr/bin/browsh +cp $CWD/browsh.png $PKG/usr/share/pixmaps/browsh.png +cp $CWD/browsh.desktop $PKG/usr/share/applications + +find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +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 diff --git a/network/browsh/browsh.desktop b/network/browsh/browsh.desktop new file mode 100644 index 0000000000..a52f29a696 --- /dev/null +++ b/network/browsh/browsh.desktop @@ -0,0 +1,11 @@ +[Desktop Entry] +Comment=Web Browser +Name=Browsh +GenericName=Browsh +Exec=browsh +Categories=Network; +Icon=browsh +MimeType= +StartupNotify=false +Terminal=true +Type=Application diff --git a/network/browsh/browsh.info b/network/browsh/browsh.info new file mode 100644 index 0000000000..1dd3e71222 --- /dev/null +++ b/network/browsh/browsh.info @@ -0,0 +1,14 @@ +PRGNAM="browsh" +VERSION="1.8.3" +HOMEPAGE="https://www.brow.sh/" +DOWNLOAD="UNSUPPORTED" +MD5SUM="" +DOWNLOAD_x86_64="https://github.com/browsh-org/browsh/archive/v1.8.3/browsh-1.8.3.tar.gz \ + https://github.com/browsh-org/browsh/releases/download/v1.8.3/browsh-1.8.3.xpi \ + https://go.dev/dl/go1.25.1.linux-amd64.tar.gz" +MD5SUM_x86_64="5921ec2d76dd75057ba3677800bf9128 \ + 1bea350af4ee7df1a1bc870cb51badb3 \ + b9b991f2db8db99e3a2a5a9397948931" +REQUIRES="" +MAINTAINER="Antonio Leal" +EMAIL="antonioleal@yahoo.com" diff --git a/network/browsh/browsh.png b/network/browsh/browsh.png Binary files differnew file mode 100644 index 0000000000..1709705987 --- /dev/null +++ b/network/browsh/browsh.png diff --git a/network/browsh/doinst.sh b/network/browsh/doinst.sh new file mode 100644 index 0000000000..91806f4efc --- /dev/null +++ b/network/browsh/doinst.sh @@ -0,0 +1,12 @@ +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database usr/share/applications >/dev/null 2>&1 +fi + +if [ -x /usr/bin/update-mime-database ]; then + /usr/bin/update-mime-database usr/share/mime >/dev/null 2>&1 +fi + +if [ -x /usr/bin/gtk-update-icon-cache ] \ + && [ -e usr/share/icons/hicolor/icon-theme.cache ]; then + /usr/bin/gtk-update-icon-cache -f usr/share/icons/hicolor >/dev/null 2>&1 +fi diff --git a/network/browsh/slack-desc b/network/browsh/slack-desc new file mode 100644 index 0000000000..f10cc1cbb5 --- /dev/null +++ b/network/browsh/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. Line +# up the first '|' above the ':' following the base package name, and the '|' on +# the right side marks the last column you can put a character in. You must make +# exactly 11 lines for the formatting to be correct. It's also customary to +# leave one space after the ':'. + + |-----handy-ruler------------------------------------------------------| +browsh: browsh (Private Web Browser) +browsh: +browsh: Browsh is a fully-modern text-based browser. It renders anything that +browsh: a modern browser can; HTML5, CSS3, JS, video and even WebGL. +browsh: +browsh: +browsh: +browsh: +browsh: +browsh: +browsh: |