mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-22 19:44:21 +01:00
network/session: Added (Send Messages,Not Metadata.)
Signed-off-by: bedlam <dave@slackbuilds.org> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
b99e101b83
commit
386548e73a
6 changed files with 146 additions and 0 deletions
19
network/session/README
Normal file
19
network/session/README
Normal file
|
@ -0,0 +1,19 @@
|
|||
Session is an end-to-end encrypted messenger that minimises sensitive
|
||||
metadata, designed and built for people who want absolute privacy
|
||||
and freedom from any form of surveillance.
|
||||
|
||||
* No Phone Numbers
|
||||
|
||||
* No Data Breaches
|
||||
|
||||
* No Footprints
|
||||
|
||||
* Open Source
|
||||
|
||||
* Censorship Resistant
|
||||
|
||||
Session has also undergone a security audit by Quarkslab
|
||||
|
||||
------------------------------------------------------------------------
|
||||
This SlackBuild downloads and installs the official AppImage under
|
||||
'/opt'.
|
9
network/session/doinst.sh
Normal file
9
network/session/doinst.sh
Normal file
|
@ -0,0 +1,9 @@
|
|||
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
|
10
network/session/session-desktop.desktop
Normal file
10
network/session/session-desktop.desktop
Normal file
|
@ -0,0 +1,10 @@
|
|||
[Desktop Entry]
|
||||
Name=Session
|
||||
Exec=session-desktop
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Icon=session-desktop
|
||||
StartupWMClass=Session
|
||||
X-AppImage-Version=1.10.3
|
||||
Comment=Private messaging from your desktop
|
||||
Categories=Network;
|
79
network/session/session.SlackBuild
Normal file
79
network/session/session.SlackBuild
Normal file
|
@ -0,0 +1,79 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Slackware build script for Session Messenger
|
||||
|
||||
# Copyright 2023 Slackjeff <slackjeff@riseup.net>
|
||||
# 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=session
|
||||
VERSION=${VERSION:-1.10.3}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
PKGTYPE=${PKGTYPE:-tgz}
|
||||
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}
|
||||
APPIMGNAM=$PRGNAM-desktop-linux-$ARCH-$VERSION.AppImage
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
mkdir -p $PKG/install
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
mkdir -p $PKG/usr/share/$PRGNAM-$VERSION
|
||||
mkdir -p $PKG/usr/share/applications
|
||||
mkdir -p $PKG/usr/bin
|
||||
mkdir -p $PKG/opt
|
||||
|
||||
cd $PKG/opt
|
||||
install -m 0755 $CWD/$APPIMGNAM .
|
||||
./$APPIMGNAM --appimage-extract
|
||||
mv squashfs-root $PRGNAM-$VERSION
|
||||
|
||||
chown -R root:root .
|
||||
find . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} + -o \
|
||||
\! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} +
|
||||
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
cat $CWD/README > $PKG/usr/doc/$PRGNAM-$VERSION/README
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||
cat $CWD/$PRGNAM-desktop.desktop > $PKG/usr/share/applications/$PRGNAM-desktop.desktop
|
||||
|
||||
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
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
|
10
network/session/session.info
Normal file
10
network/session/session.info
Normal file
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="session"
|
||||
VERSION="1.10.3"
|
||||
HOMEPAGE="https://getsession.org/"
|
||||
DOWNLOAD="UNSUPPORTED"
|
||||
MD5SUM=""
|
||||
DOWNLOAD_x86_64="https://github.com/oxen-io/session-desktop/releases/download/v1.10.3/session-desktop-linux-x86_64-1.10.3.AppImage"
|
||||
MD5SUM_x86_64="b422f3d0e8a6ebd5642a6b508ddc4a0b"
|
||||
REQUIRES=""
|
||||
MAINTAINER="slackjeff"
|
||||
EMAIL="slackjeff@riseup.net"
|
19
network/session/slack-desc
Normal file
19
network/session/slack-desc
Normal file
|
@ -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------------------------------------------------------|
|
||||
session: session (Send Messages,Not Metadata.)
|
||||
session:
|
||||
session: Session is an end-to-end encrypted messenger that minimises sensitive
|
||||
session: metadata, designed and built for people who want absolute privacy and
|
||||
session: freedom from any form of surveillance.
|
||||
session:
|
||||
session:
|
||||
session:
|
||||
session:
|
||||
session: https://getsession.org/
|
||||
session:
|
Loading…
Reference in a new issue