network/SoulseekQt: Updated for version 20180130.

Drop support for 32-bit version, because 32-bit binary is not
provided anymore.

Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Dominik Drobek 2022-05-08 00:57:42 +02:00 committed by Willy Sudiarto Raharjo
parent 509ffb1227
commit 8de2e14cd8
No known key found for this signature in database
GPG key ID: 3F617144D7238786
5 changed files with 38 additions and 23 deletions

View file

@ -1,5 +1,6 @@
SoulseekQt is the official client software for the Soulseek SoulseekQt is the official client software for the Soulseek
peer-to-peer file-sharing network. peer-to-peer file-sharing network.
This SlackBuild creates a Slackware package from the 64- or 32-bit This SlackBuild creates a Slackware package from the 64-bit
binary SoulseekQt package from the official website. binary SoulseekQt AppImage from the official website. 32-bit
version is not provided by upstream.

View file

@ -2,7 +2,7 @@
# Slackware build script for SoulseekQt # Slackware build script for SoulseekQt
# Copyright 2016-2018, 2020 Dominik Drobek <dominik.drobek (at) o2.pl> # Copyright 2016-2018, 2020, 2022 Dominik Drobek <dominik.drobek (at) o2.pl>
# All rights reserved. # All rights reserved.
# #
# Redistribution and use of this script, with or without modification, is # Redistribution and use of this script, with or without modification, is
@ -25,12 +25,12 @@
cd $(dirname $0) ; CWD=$(pwd) cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=SoulseekQt PRGNAM=SoulseekQt
VERSION=${VERSION:-20160117} VERSION=${VERSION:-20180130}
BUILD=${BUILD:-2} BUILD=${BUILD:-1}
TAG=${TAG:-_SBo} TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz} PKGTYPE=${PKGTYPE:-tgz}
FVER="2016-1-17" FVER="2018-1-30"
if [ -z "$ARCH" ]; then if [ -z "$ARCH" ]; then
case "$( uname -m )" in case "$( uname -m )" in
@ -40,9 +40,6 @@ if [ -z "$ARCH" ]; then
esac esac
fi fi
# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
# the name of the created package would be, and then exit. This information
# could be useful to other scripts.
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
exit 0 exit 0
@ -54,8 +51,6 @@ OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "x86_64" ]; then if [ "$ARCH" = "x86_64" ]; then
TGZARCH="64bit" TGZARCH="64bit"
elif [ "$ARCH" = "i586" ] || [ "$ARCH" = "i686" ]; then
TGZARCH="32bit"
else else
printf "\n$ARCH is unsupported for $PRGNAM, exiting.\n\n" printf "\n$ARCH is unsupported for $PRGNAM, exiting.\n\n"
exit 1 exit 1
@ -68,18 +63,33 @@ mkdir -p $TMP $PKG $OUTPUT
cd $TMP cd $TMP
rm -rf $PRGNAM-$VERSION rm -rf $PRGNAM-$VERSION
mkdir -p $TMP/$PRGNAM-$VERSION mkdir -p $TMP/$PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$FVER-$TGZARCH.tgz -C $TMP/$PRGNAM-$VERSION tar xvf $CWD/$PRGNAM-$FVER-$TGZARCH-appimage.tgz -C $TMP/$PRGNAM-$VERSION
cd $PRGNAM-$VERSION cd $PRGNAM-$VERSION
./$PRGNAM-$FVER-$TGZARCH.AppImage --appimage-extract
cd squashfs-root/
chown -R root:root . 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 {} \;
install -D -m 755 $PRGNAM-$FVER-$TGZARCH $PKG/opt/$PRGNAM/$PRGNAM mkdir -p $PKG/{usr/bin,usr/share/applications,usr/share/pixmaps,opt}
install -D -m 644 $CWD/$PRGNAM.png -t $PKG/usr/share/pixmaps/ cp -r $TMP/$PRGNAM-$VERSION/squashfs-root/ $PKG/opt/$PRGNAM
install -D -m 644 $CWD/$PRGNAM.desktop -t $PKG/usr/share/applications/ cp soulseek.png $PKG/usr/share/pixmaps/$PRGNAM.png
mkdir -p $PKG/usr/bin cp $CWD/$PRGNAM.desktop $PKG/usr/share/applications/
ln -sf ../../opt/$PRGNAM/$PRGNAM $PKG/usr/bin/$PRGNAM ln -sf ../../opt/$PRGNAM/$PRGNAM $PKG/usr/bin/$PRGNAM
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ # provide mock SELinux library
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true gcc -s -shared -Wl,-soname,libselinux.so.1 \
$CWD/selinux-stub.c -o $PKG/opt/$PRGNAM/lib/libselinux.so.1
# clean up unnecessary files
rm $PKG/opt/$PRGNAM/{AppRun,.DirIcon,*.AppImage,default.desktop,soulseek.png}
#rm $PKG/opt/$PRGNAM/lib/libfreetype.so.6 # Arch Linux PKGBUILD deletes this, not sure why
# fix permissions on installed directories
find $PKG/opt/$PRGNAM -type d -exec chmod 755 {} \;
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild

View file

@ -1,10 +1,10 @@
PRGNAM="SoulseekQt" PRGNAM="SoulseekQt"
VERSION="20160117" VERSION="20180130"
HOMEPAGE="https://www.slsknet.org/" HOMEPAGE="https://www.slsknet.org/"
DOWNLOAD="http://ponce.cc/slackware/sources/repo/SoulseekQt-2016-1-17-32bit.tgz" DOWNLOAD="UNSUPPORTED"
MD5SUM="906d99b15ed02d0d66981fffeeea1218" MD5SUM=""
DOWNLOAD_x86_64="http://ponce.cc/slackware/sources/repo/SoulseekQt-2016-1-17-64bit.tgz" DOWNLOAD_x86_64="https://www.slsknet.org/SoulseekQt/Linux/SoulseekQt-2018-1-30-64bit-appimage.tgz"
MD5SUM_x86_64="c843e748a129e4ad9461280aeb2b957a" MD5SUM_x86_64="1d98331893bc9b9d45ba34f6523353ab"
REQUIRES="" REQUIRES=""
MAINTAINER="Dominik Drobek" MAINTAINER="Dominik Drobek"
EMAIL="dominik.drobek (at) o2.pl" EMAIL="dominik.drobek (at) o2.pl"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 905 B

View file

@ -0,0 +1,4 @@
int is_selinux_enabled(void)
{
return 0;
}