From: fsLeg Date: Sat, 13 Jul 2024 21:33:44 +0000 (+0300) Subject: Various cleanups X-Git-Url: https://git.t-rg.ws/?a=commitdiff_plain;h=73bc4882132ecf384cb9096a36f4bdf0815b595a;p=slackbuilds.git Various cleanups --- diff --git a/dart-sass/dart-sass.SlackBuild b/dart-sass/dart-sass.SlackBuild index 4d06a6c..a5e73d8 100755 --- a/dart-sass/dart-sass.SlackBuild +++ b/dart-sass/dart-sass.SlackBuild @@ -1,8 +1,8 @@ -#!/bin/sh +#!/bin/bash # Slackware build script for dart-sass -# Copyright 2022 Vladislav Borisov Moscow, Russia +# Copyright 2022-2024 Vladislav 'fsLeg' Borisov, Moscow, Russia # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -22,10 +22,13 @@ # 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="dart-sass" VERSION=${VERSION:-1.77.4} BUILD=${BUILD:-1} TAG=${TAG:-fsleg} +PKGTYPE=${PKGTYPE:-txz} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then @@ -37,7 +40,14 @@ if [ -z "$ARCH" ]; then esac fi -CWD=$(pwd) +# 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 + echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" + exit 0 +fi + TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} diff --git a/dart-sass/dart-sass.info b/dart-sass/dart-sass.info index 18b135b..bbb9aba 100644 --- a/dart-sass/dart-sass.info +++ b/dart-sass/dart-sass.info @@ -6,5 +6,5 @@ MD5SUM="9d0728da69d5f7f38da7f21b0129e619" DOWNLOAD_x86_64="https://github.com/sass/dart-sass/releases/download/1.77.4/dart-sass-1.77.4-linux-x64.tar.gz" MD5SUM_x86_64="25fcb6502c283713907bb92fa81863b4" REQUIRES="" -MAINTAINER="Vladislav Borisov" +MAINTAINER="Vladislav 'fsLeg' Borisov" EMAIL="fsleg@t-rg.ws" diff --git a/dumptorrent/dumptorrent.SlackBuild b/dumptorrent/dumptorrent.SlackBuild index 76dd887..68e8113 100755 --- a/dumptorrent/dumptorrent.SlackBuild +++ b/dumptorrent/dumptorrent.SlackBuild @@ -1,8 +1,8 @@ -#!/bin/sh +#!/bin/bash # Slackware build script for dumptorrent -# Copyright 2015 Vladislav Borisov, Moscow, Russia +# Copyright 2015-2024 Vladislav 'fsLeg' Borisov, Moscow, Russia # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -22,10 +22,18 @@ # 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=dumptorrent VERSION=${VERSION:-1.2} BUILD=${BUILD:-1} TAG=${TAG:-fsleg} +PKGTYPE=${PKGTYPE:-txz} + +# Use parallel building if possible +if [ -z "$NUMJOBS" ]; then + NUMJOBS=$(nproc) +fi # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then @@ -37,7 +45,14 @@ if [ -z "$ARCH" ]; then esac fi -CWD=$(pwd) +# 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 + echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" + exit 0 +fi + TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} @@ -67,7 +82,7 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; -make dumptorrent CFLAGS="${SLKFLAGS}" +make -j${NUMJOBS} dumptorrent CFLAGS="${SLKFLAGS}" # There's no 'install' target and no documentation, so we just copy the binary # to a correct location and package it. diff --git a/dumptorrent/dumptorrent.info b/dumptorrent/dumptorrent.info index 30ad043..59bd74b 100644 --- a/dumptorrent/dumptorrent.info +++ b/dumptorrent/dumptorrent.info @@ -6,5 +6,5 @@ MD5SUM="90c68a0889bd0eae2ed3392bd5e1fb03" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="" -MAINTAINER="Vladislav Borisov" +MAINTAINER="Vladislav 'fsLeg' Borisov" EMAIL="fsleg@t-rg.ws" diff --git a/fdpowermon/fdpowermon.SlackBuild b/fdpowermon/fdpowermon.SlackBuild index d63ee62..4d26a36 100755 --- a/fdpowermon/fdpowermon.SlackBuild +++ b/fdpowermon/fdpowermon.SlackBuild @@ -1,8 +1,8 @@ -#!/bin/sh +#!/bin/bash # Slackware build script for dart-sass -# Copyright 2022 Vladislav Borisov Moscow, Russia +# Copyright 2022-2024 Vladislav 'fsLeg' Borisov, Moscow, Russia # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -22,16 +22,25 @@ # 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="fdpowermon" VERSION=${VERSION:-1.20} BUILD=${BUILD:-1} TAG=${TAG:-fsleg} -TARNAM=$PRGNAM-$PRGNAM-$VERSION +PKGTYPE=${PKGTYPE:-txz} # It's a Perl script, so arch doesn't matter ARCH="noarch" -CWD=$(pwd) +# 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 + echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" + exit 0 +fi + TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} @@ -44,8 +53,8 @@ rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP -tar xvf $CWD/$TARNAM.tar.gz -cd $TARNAM +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION mkdir -p $PKG/usr/bin $PKG/etc/$PRGNAM $PKG/usr/share/icons/oxygen/base/22x22/status cp fdpowermon $PKG/usr/bin/ cp theme.cfg $PKG/etc/$PRGNAM/ diff --git a/fdpowermon/fdpowermon.info b/fdpowermon/fdpowermon.info index 84f1cd5..bd7625c 100644 --- a/fdpowermon/fdpowermon.info +++ b/fdpowermon/fdpowermon.info @@ -6,5 +6,5 @@ MD5SUM="9e1fcebcdc655e66bc0310ca40a7572b" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="acpi perl-Gtk3" -MAINTAINER="Vladislav Borisov" -EMAIL="fsleg@t-rg.ws" \ No newline at end of file +MAINTAINER="Vladislav 'fsLeg' Borisov" +EMAIL="fsleg@t-rg.ws" diff --git a/gxkb/gxkb.SlackBuild b/gxkb/gxkb.SlackBuild index 843fa71..8fddd58 100755 --- a/gxkb/gxkb.SlackBuild +++ b/gxkb/gxkb.SlackBuild @@ -3,7 +3,7 @@ # Slackware build script for gxkb # Copyright 2015-21 NK -# Copyright 2024 Vladislav Borisov Moscow, Russia +# Copyright 2024 Vladislav 'fsLeg' Borisov, Moscow, Russia # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -31,6 +31,11 @@ BUILD=${BUILD:-1} TAG=${TAG:-fsleg} PKGTYPE=${PKGTYPE:-txz} +# Use parallel building if possible +if [ -z "$NUMJOBS" ]; then + NUMJOBS=$(nproc) +fi + if [ -z "$ARCH" ]; then case "$( uname -m )" in i?86) ARCH=i586 ;; @@ -103,7 +108,7 @@ CXXFLAGS="$SLKCFLAGS" \ --build=$ARCH-slackware-linux \ --enable-appindicator=no -make +make -j${NUMJOBS} make install DESTDIR=$PKG find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ diff --git a/gxkb/gxkb.info b/gxkb/gxkb.info index 6e694f2..346fe06 100755 --- a/gxkb/gxkb.info +++ b/gxkb/gxkb.info @@ -6,5 +6,5 @@ MD5SUM="597a1c052156a878aa252fca10c985c6" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="" -MAINTAINER="Vladislav Borisov" +MAINTAINER="Vladislav 'fsLeg' Borisov" EMAIL="fsleg@t-rg.ws" diff --git a/pyotherside/pyotherside.SlackBuild b/pyotherside/pyotherside.SlackBuild index f6229d8..c4cfffd 100755 --- a/pyotherside/pyotherside.SlackBuild +++ b/pyotherside/pyotherside.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for pyotherside -# Copyright 2023 Vladislav Borisov, Moscow, Russia +# Copyright 2023-2024 Vladislav 'fsLeg' Borisov, Moscow, Russia # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -45,6 +45,14 @@ if [ -z "$ARCH" ]; then esac 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 + echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" + exit 0 +fi + TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} diff --git a/pyotherside/pyotherside.info b/pyotherside/pyotherside.info index 0914c5d..70dce50 100644 --- a/pyotherside/pyotherside.info +++ b/pyotherside/pyotherside.info @@ -1,10 +1,10 @@ PRGNAM="pyotherside" VERSION="1.6.1" HOMEPAGE="https://thp.io/2011/pyotherside/" -DOWNLOAD="https://github.com/thp/pyotherside/archive/1.6.1.tar.gz" +DOWNLOAD="https://github.com/thp/pyotherside/archive/1.6.1/pyotherside-1.6.1.tar.gz" MD5SUM="1400e7501911d9b261ea3a9b47cddd5c" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="" -MAINTAINER="Vladislav Borisov" +MAINTAINER="Vladislav 'fsLeg' Borisov" EMAIL="fsleg@t-rg.ws" diff --git a/pyscard/pyscard.SlackBuild b/pyscard/pyscard.SlackBuild index da0c8df..c7f0e44 100755 --- a/pyscard/pyscard.SlackBuild +++ b/pyscard/pyscard.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for pyscard -# Copyright 2023 Vladislav Borisov, Moscow, Russia +# Copyright 2023-2024 Vladislav 'fsLeg' Borisov, Moscow, Russia # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -40,6 +40,14 @@ if [ -z "$ARCH" ]; then esac 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 + echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" + exit 0 +fi + TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} diff --git a/pyscard/pyscard.info b/pyscard/pyscard.info index 4044aa9..d45bf7f 100644 --- a/pyscard/pyscard.info +++ b/pyscard/pyscard.info @@ -1,10 +1,10 @@ PRGNAM="pyscard" VERSION="2.0.10" HOMEPAGE="https://pyscard.sourceforge.io/" -DOWNLOAD="https://github.com/LudovicRousseau/pyscard/archive/refs/tags/2.0.10.tar.gz" +DOWNLOAD="https://github.com/LudovicRousseau/pyscard/archive/2.0.10/pyscard-2.0.10.tar.gz" MD5SUM="96ea193949b739b6e3e7e65dbc41c4dd" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="pcsc-lite" -MAINTAINER="Vladislav Borisov" +MAINTAINER="Vladislav 'fsLeg' Borisov" EMAIL="fsleg@t-rg.ws" diff --git a/python-fido2/python-fido2.SlackBuild b/python-fido2/python-fido2.SlackBuild index 5f85029..657b4ad 100755 --- a/python-fido2/python-fido2.SlackBuild +++ b/python-fido2/python-fido2.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for python-fido2 -# Copyright 2023 Vladislav Borisov, Moscow, Russia +# Copyright 2023-2024 Vladislav 'fsLeg' Borisov, Moscow, Russia # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -41,6 +41,14 @@ if [ -z "$ARCH" ]; then esac 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 + echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" + exit 0 +fi + TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} diff --git a/python-fido2/python-fido2.info b/python-fido2/python-fido2.info index b0410b7..eba42bc 100644 --- a/python-fido2/python-fido2.info +++ b/python-fido2/python-fido2.info @@ -6,5 +6,5 @@ MD5SUM="88c5e54dfb19f5371eba49d73c4620c4" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="cryptography python3-poetry-core" -MAINTAINER="Vladislav Borisov" +MAINTAINER="Vladislav 'fsLeg' Borisov" EMAIL="fsleg@t-rg.ws" diff --git a/saflashplayer/saflashplayer.SlackBuild b/saflashplayer/saflashplayer.SlackBuild index 4bef8f4..e37f532 100755 --- a/saflashplayer/saflashplayer.SlackBuild +++ b/saflashplayer/saflashplayer.SlackBuild @@ -1,8 +1,8 @@ -#!/bin/sh +#!/bin/bash # Slackware build script for saflashplayer -# Copyright 2015-2022 Vladislav Borisov Moscow, Russia +# Copyright 2015-2024 Vladislav 'fsLeg' Borisov, Moscow, Russia # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -22,10 +22,13 @@ # 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=saflashplayer VERSION=${VERSION:-32.0.0.465} BUILD=${BUILD:-1} TAG=${TAG:-fsleg} +PKGTYPE=${PKGTYPE:-txz} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then @@ -47,7 +50,14 @@ if [ "i486" == "${ARCH}" ]; then exit 1 fi -CWD=$(pwd) +# 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 + echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" + exit 0 +fi + TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} @@ -64,7 +74,7 @@ tar xvf $CWD/flash_player_sa_linux.x86_64.tar.gz mkdir -p $PKG/usr/bin $PKG/usr/share/applications mv flashplayer $PKG/usr/bin/saflashplayer.bin cp -a $CWD/saflashplayer.sh $PKG/usr/bin/saflashplayer -cp -a $CWD/saflashplayer.desktop $PKG/usr/share/applications +cp -a $CWD/saflashplayer.desktop $PKG/usr/share/applications/com.adobe.flashplayer.desktop chown -R root:root $PKG find -L $PKG \ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ diff --git a/saflashplayer/saflashplayer.desktop b/saflashplayer/saflashplayer.desktop index 8438484..232c754 100644 --- a/saflashplayer/saflashplayer.desktop +++ b/saflashplayer/saflashplayer.desktop @@ -2,6 +2,7 @@ Version=1.0 Type=Application GenericName=FlashPlayer StandAlone +Name=FlashPlayer StandAlone Comment=Open SWF files Exec=saflashplayer %U Icon=flash diff --git a/saflashplayer/saflashplayer.info b/saflashplayer/saflashplayer.info index 72065cb..a3c8596 100644 --- a/saflashplayer/saflashplayer.info +++ b/saflashplayer/saflashplayer.info @@ -6,5 +6,5 @@ MD5SUM="" DOWNLOAD_x86_64="https://fpdownload.macromedia.com/pub/flashplayer/updaters/32/flash_player_sa_linux.x86_64.tar.gz" MD5SUM_x86_64="88f0b2ecf4ed6866a00b6575d5f8b596" REQUIRES="" -MAINTAINER="Vladislav Borisov" +MAINTAINER="Vladislav 'fsLeg' Borisov" EMAIL="fsleg@t-rg.ws" diff --git a/shadowsocks-rust/shadowsocks-rust.SlackBuild b/shadowsocks-rust/shadowsocks-rust.SlackBuild index 7b74aba..8b06d36 100755 --- a/shadowsocks-rust/shadowsocks-rust.SlackBuild +++ b/shadowsocks-rust/shadowsocks-rust.SlackBuild @@ -1,8 +1,8 @@ -#!/bin/sh +#!/bin/bash # Slackware build script for shadowsocks-rust -# Copyright 2022 Vladislav Borisov, Moscow, Russia +# Copyright 2022-2024 Vladislav 'fsLeg' Borisov, Moscow, Russia # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -22,10 +22,13 @@ # 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=shadowsocks-rust VERSION=${VERSION:-1.19.2} BUILD=${BUILD:-1} TAG=${TAG:-fsleg} +PKGTYPE=${PKGTYPE:-txz} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then @@ -36,7 +39,14 @@ if [ -z "$ARCH" ]; then esac fi -CWD=$(pwd) +# 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 + echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" + exit 0 +fi + TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} diff --git a/shadowsocks-rust/shadowsocks-rust.info b/shadowsocks-rust/shadowsocks-rust.info index f4c3a2c..ac0ce32 100644 --- a/shadowsocks-rust/shadowsocks-rust.info +++ b/shadowsocks-rust/shadowsocks-rust.info @@ -1,10 +1,10 @@ PRGNAM="shadowsocks-rust" VERSION="1.19.2" HOMEPAGE="https://github.com/shadowsocks/shadowsocks-rust" -DOWNLOAD="https://github.com/shadowsocks/shadowsocks-rust/archive/refs/tags/v1.19.2.tar.gz" +DOWNLOAD="https://github.com/shadowsocks/shadowsocks-rust/archive/v1.19.2/shadowsocks-rust-1.19.2.tar.gz" MD5SUM="f400861f0b4baa14a09914cca9057710" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="rust16" -MAINTAINER="Vladislav Borisov" +MAINTAINER="Vladislav 'fsLeg' Borisov" EMAIL="fsleg@t-rg.ws" diff --git a/yubikey-manager-qt/yubikey-manager-qt.SlackBuild b/yubikey-manager-qt/yubikey-manager-qt.SlackBuild index 90897e0..a1b2120 100755 --- a/yubikey-manager-qt/yubikey-manager-qt.SlackBuild +++ b/yubikey-manager-qt/yubikey-manager-qt.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for yubikey-manager-qt -# Copyright 2023 Vladislav Borisov, Moscow, Russia +# Copyright 2023-2024 Vladislav 'fsLeg' Borisov, Moscow, Russia # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -45,6 +45,14 @@ if [ -z "$ARCH" ]; then esac 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 + echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" + exit 0 +fi + TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} diff --git a/yubikey-manager-qt/yubikey-manager-qt.info b/yubikey-manager-qt/yubikey-manager-qt.info index 8d76558..923891c 100644 --- a/yubikey-manager-qt/yubikey-manager-qt.info +++ b/yubikey-manager-qt/yubikey-manager-qt.info @@ -6,5 +6,5 @@ MD5SUM="036dd3f0cf2b77c68edef4c471d19c66" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="yubikey-manager pyotherside" -MAINTAINER="Vladislav Borisov" +MAINTAINER="Vladislav 'fsLeg' Borisov" EMAIL="fsleg@t-rg.ws" diff --git a/yubikey-manager/yubikey-manager.SlackBuild b/yubikey-manager/yubikey-manager.SlackBuild index c30610b..4635655 100755 --- a/yubikey-manager/yubikey-manager.SlackBuild +++ b/yubikey-manager/yubikey-manager.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for yubikey-manager -# Copyright 2023 Vladislav Borisov, Moscow, Russia +# Copyright 2023-2024 Vladislav 'fsLeg' Borisov, Moscow, Russia # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -41,6 +41,14 @@ if [ -z "$ARCH" ]; then esac 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 + echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" + exit 0 +fi + TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} diff --git a/yubikey-manager/yubikey-manager.info b/yubikey-manager/yubikey-manager.info index a167707..bab1fbf 100644 --- a/yubikey-manager/yubikey-manager.info +++ b/yubikey-manager/yubikey-manager.info @@ -6,5 +6,5 @@ MD5SUM="66bf30c173e9b959a9e8428d4d427003" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="ccid click python-fido2 python-keyring pyscard" -MAINTAINER="Vladislav Borisov" +MAINTAINER="Vladislav 'fsLeg' Borisov" EMAIL="fsleg@t-rg.ws" diff --git a/yubioath-desktop/yubioath-desktop.SlackBuild b/yubioath-desktop/yubioath-desktop.SlackBuild index 349058a..c2b0412 100755 --- a/yubioath-desktop/yubioath-desktop.SlackBuild +++ b/yubioath-desktop/yubioath-desktop.SlackBuild @@ -1,8 +1,8 @@ -#!/bin/sh +#!/bin/bash # Slackware build script for yubioath-desktop -# Copyright 2023 Vladislav Borisov Moscow, Russia +# Copyright 2023-2024 Vladislav 'fsLeg' Borisov, Moscow, Russia # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -22,6 +22,8 @@ # 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=yubioath-desktop TARNAM=yubico-authenticator VERSION=${VERSION:-7.0.0} @@ -39,7 +41,14 @@ if [ -z "$ARCH" ]; then esac fi -CWD=$(pwd) +# 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 + echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" + exit 0 +fi + TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} diff --git a/yubioath-desktop/yubioath-desktop.info b/yubioath-desktop/yubioath-desktop.info index d91d7a7..2781b42 100644 --- a/yubioath-desktop/yubioath-desktop.info +++ b/yubioath-desktop/yubioath-desktop.info @@ -6,5 +6,5 @@ MD5SUM="" DOWNLOAD_x86_64="https://developers.yubico.com/yubioath-flutter/Releases/yubico-authenticator-7.0.0-linux.tar.gz" MD5SUM_x86_64="f33ba1dd06e700913eb5221150484087" REQUIRES="pcsc-lite" -MAINTAINER="Vladislav Borisov" +MAINTAINER="Vladislav 'fsLeg' Borisov" EMAIL="fsleg@t-rg.ws"