diff options
author | David O'Shaughnessy <dev@osh.id.au> | 2020-10-08 20:20:03 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2020-10-10 10:18:43 +0700 |
commit | a58ef43cd8b4d2adbd017ef01048a2943d199bc2 (patch) | |
tree | 97c4f8025e3f624bd412afc2c132d03c4d783118 /network | |
parent | b152f897ed029772216c8cbfc1993bd729e360e4 (diff) |
network/wire: Updated for version 3.20.2934.
Signed-off-by: Dave Woodfall <dave@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network')
-rw-r--r-- | network/wire/README | 6 | ||||
-rw-r--r-- | network/wire/wire.SlackBuild | 58 | ||||
-rw-r--r-- | network/wire/wire.info | 14 |
3 files changed, 41 insertions, 37 deletions
diff --git a/network/wire/README b/network/wire/README index 40cff1e57ceb0..930951df16123 100644 --- a/network/wire/README +++ b/network/wire/README @@ -4,9 +4,9 @@ Our personal and professional data is at the center of a new economy. The information we share on social networks, via email, and messaging services is being used to build profiles. These profiles are in turn used to sell us products and services through targeted advertising and -suggestion. The data collected is vast, detailed, and often very personal. -Vast resources are being spent to refine the profiles, all without -transparency, policy or oversight. +suggestion. The data collected is vast, detailed, and often very +personal. Vast resources are being spent to refine the profiles, all +without transparency, policy or oversight. Our personal and professional online communications should not be part of this economy. In the physical world we talk with each other directly. diff --git a/network/wire/wire.SlackBuild b/network/wire/wire.SlackBuild index 160bd830cf369..ae72e4ccbec86 100644 --- a/network/wire/wire.SlackBuild +++ b/network/wire/wire.SlackBuild @@ -1,8 +1,9 @@ -#!/bin/sh +#!/usr/bin/env bash # Slackware build script for wire -# Copyright 2016-2019 Dimitris Zlatanidis Orestiada, Greece +# Copyright 2016-2019 Dimitris Zlatanidis Orestiada, Greece +# Copyright 2020 David O'Shaughnessy # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,16 +24,16 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=wire -VERSION=${VERSION:-3.5.2881} +VERSION=${VERSION:-3.20.2934} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i586 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac + case "$( uname -m )" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac fi CWD=$(pwd) @@ -41,24 +42,27 @@ PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} if [ "$ARCH" = "i586" ]; then - SLKCFLAGS="-O2 -march=i586 -mtune=i686" - LIBDIRSUFFIX="" + SLKCFLAGS="-O2 -march=i586 -mtune=i686" + LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" - LIBDIRSUFFIX="" + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" - LIBDIRSUFFIX="64" + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" else - SLKCFLAGS="-O2" - LIBDIRSUFFIX="" + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" fi set -e -DEBARCH="i386" +# Upstream only has binary support for x86_64. if [ "$ARCH" = "x86_64" ]; then DEBARCH="amd64" +else + echo "Sorry, the Wire binary is only available for x86_64." + exit 1 fi rm -rf $PKG @@ -66,26 +70,26 @@ mkdir -p $TMP $PKG $OUTPUT cd $TMP rm -rf $PRGNAM-$VERSION mkdir -p $PRGNAM-$VERSION && cd $PRGNAM-$VERSION -ar p $CWD/$PRGNAM\_$VERSION\_$DEBARCH.deb data.tar.xz | tar xJv +ar p $CWD/${PRGNAM^}-$VERSION\_$DEBARCH.deb data.tar.xz | tar xJv 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 {} \; + \( -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 {} \; # Install data mkdir -p $PKG/opt/${PRGNAM^} cp -rf opt/${PRGNAM^}/* $PKG/opt/${PRGNAM^} 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 + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true # Create soft link for launcher mkdir -p $PKG/usr/bin ( - cd $PKG/usr/bin - ln -sf /opt/${PRGNAM^}/$PRGNAM-desktop $PRGNAM-desktop + cd $PKG/usr/bin + ln -sf /opt/${PRGNAM^}/$PRGNAM-desktop $PRGNAM-desktop ) # Install .desktop file @@ -96,12 +100,12 @@ cat usr/share/applications/$PRGNAM-desktop.desktop > \ # Install .desktop icon mkdir -p $PKG/usr/share/pixmaps install -D -m0644 usr/share/icons/hicolor/32x32/apps/$PRGNAM-desktop.png \ - $PKG/usr/share/pixmaps/$PRGNAM-desktop.png + $PKG/usr/share/pixmaps/$PRGNAM-desktop.png gunzip usr/share/doc/$PRGNAM-desktop/changelog.gz mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a usr/share/doc/$PRGNAM-desktop/changelog opt/${PRGNAM^}/LICENSE* \ - $PKG/usr/doc/$PRGNAM-$VERSION + $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install diff --git a/network/wire/wire.info b/network/wire/wire.info index 5bb7ae21faa20..dac5cb8e328bd 100644 --- a/network/wire/wire.info +++ b/network/wire/wire.info @@ -1,10 +1,10 @@ PRGNAM="wire" -VERSION="3.5.2881" +VERSION="3.20.2934" HOMEPAGE="https://wire.com/" -DOWNLOAD="https://wire-app.wire.com/linux/debian/pool/main/wire_3.5.2881_i386.deb" -MD5SUM="8482c67aef41b11637cb655bc52ad843" -DOWNLOAD_x86_64="https://wire-app.wire.com/linux/debian/pool/main/wire_3.5.2881_amd64.deb" -MD5SUM_x86_64="3737d3b06ef0daa378ae6de06f76373a" +DOWNLOAD="UNSUPPORTED" +MD5SUM="" +DOWNLOAD_x86_64="https://wire-app.wire.com/linux/Wire-3.20.2934_amd64.deb" +MD5SUM_x86_64="8ea529da6ff1630595a23e2fcdac8cd9" REQUIRES="" -MAINTAINER="Dimitris Zlatanidis" -EMAIL="d.zlatanidis@gmail.com" +MAINTAINER="David O'Shaughnessy" +EMAIL="dev@osh.id.au" |