]> git.t-rg.ws Git - slackbuilds.git/commitdiff
yubioath-desktop: added
authorfsLeg <fsleg@t-rg.ws>
Sun, 4 Jun 2023 14:17:28 +0000 (17:17 +0300)
committerfsLeg <fsleg@t-rg.ws>
Sun, 4 Jun 2023 14:17:28 +0000 (17:17 +0300)
yubioath-desktop/README [new file with mode: 0644]
yubioath-desktop/slack-desc [new file with mode: 0644]
yubioath-desktop/yubioath-desktop.SlackBuild [new file with mode: 0755]
yubioath-desktop/yubioath-desktop.info [new file with mode: 0644]

diff --git a/yubioath-desktop/README b/yubioath-desktop/README
new file mode 100644 (file)
index 0000000..b6a7664
--- /dev/null
@@ -0,0 +1,18 @@
+Store your unique credential on a hardware-backed security key and take
+it wherever you go from mobile to desktop. No more storing sensitive
+secrets on your mobile phone, leaving your account vulnerable
+to takeovers. With the Yubico Authenticator you can raise the bar
+for security.
+
+The Yubico Authenticator will work with any USB or NFC-enabled
+YubiKeys.
+
+The Yubico Authenticator securely generates a code used to verify your
+identity as you are logging into various services. No connectivity
+needed!
+
+This SlackBuild repackages the pre-built binary by Yubico. No 32bit
+version is provided.
+
+Note that the QR scanning feature when using Wayland requires
+gnome-screenshot.
diff --git a/yubioath-desktop/slack-desc b/yubioath-desktop/slack-desc
new file mode 100644 (file)
index 0000000..84f9060
--- /dev/null
@@ -0,0 +1,11 @@
+                |-----handy-ruler------------------------------------------------------|
+yubioath-desktop: yubioath-desktop (Yubico Authenticator for Desktop)
+yubioath-desktop:
+yubioath-desktop: The Yubico Authenticator securely generates a code used to verify
+yubioath-desktop: your identity as you are logging into various services.
+yubioath-desktop:
+yubioath-desktop: Website: https://www.yubico.com/products/yubico-authenticator/
+yubioath-desktop:
+yubioath-desktop:
+yubioath-desktop:
+yubioath-desktop:
diff --git a/yubioath-desktop/yubioath-desktop.SlackBuild b/yubioath-desktop/yubioath-desktop.SlackBuild
new file mode 100755 (executable)
index 0000000..d7d8193
--- /dev/null
@@ -0,0 +1,88 @@
+#!/bin/sh
+
+# Slackware build script for yubioath-desktop
+
+# Copyright 2023 Vladislav Borisov Moscow, Russia
+# 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.
+
+PRGNAM=yubioath-desktop
+TARNAM=yubico-authenticator
+VERSION=${VERSION:-6.2.0}
+BUILD=${BUILD:-1}
+TAG=${TAG:-fsleg}
+PKGTYPE=${PKGTYPE:-txz}
+
+# Automatically determine the architecture we're building on:
+if [ -z "$ARCH" ]; then
+  case "$( uname -m )" in
+    i?86) ARCH="ia32" ;;
+    x86_64*) ARCH="x64" ;;
+    # Unless $ARCH is already set, use uname -m for all other archs:
+       *) ARCH=$( uname -m ) ;;
+  esac
+fi
+
+CWD=$(pwd)
+TMP=${TMP:-/tmp/SBo}
+PKG=$TMP/package-$PRGNAM
+OUTPUT=${OUTPUT:-/tmp}
+
+# This is just a repackaging of a pre-built binary, no compilation is needed
+
+set -e # Exit on most errors
+
+rm -rf $PKG
+mkdir -p $TMP $PKG $OUTPUT
+cd $TMP
+
+tar xvf $CWD/$TARNAM-$VERSION-linux.tar.gz
+cd $PRGNAM-$VERSION-linux
+mkdir -p $PKG/opt/$PRGNAM
+cp -aR data/ helper/ lib/ linux_support/ authenticator $PKG/opt/$PRGNAM/
+mkdir -p $PKG/usr/share/applications
+sed -e "s|@EXEC_PATH|/opt/${PRGNAM}|g" \
+  < linux_support/com.yubico.authenticator.desktop \
+  > $PKG/usr/share/applications/com.yubico.authenticator.desktop
+mkdir -p $PKG/usr/bin
+cat << EOF > $PKG/usr/bin/authenticator
+#!/bin/sh
+/opt/${PRGNAM}/authenticator $@
+EOF
+chmod 755 $PKG/usr/bin/authenticator
+chown -R root:root $PKG
+find -L $PKG \
+ \( -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 {} \;
+
+# Stripping the binary makes it not work
+
+# Copy program license into the package
+mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
+cp -a README.adoc $PKG/usr/doc/$PRGNAM-$VERSION/
+cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
+
+# Copy the slack-desc into ./install
+mkdir -p $PKG/install
+cat $CWD/slack-desc > $PKG/install/slack-desc
+
+cd $PKG
+/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE}
diff --git a/yubioath-desktop/yubioath-desktop.info b/yubioath-desktop/yubioath-desktop.info
new file mode 100644 (file)
index 0000000..6a52ccc
--- /dev/null
@@ -0,0 +1,10 @@
+PRGNAM="yubioath-desktop"
+VERSION="6.2.0"
+HOMEPAGE="https://www.yubico.com/products/yubico-authenticator/"
+DOWNLOAD="UNSUPPORTED"
+MD5SUM=""
+DOWNLOAD_x86_64="https://developers.yubico.com/yubioath-flutter/Releases/yubico-authenticator-6.2.0-linux.tar.gz"
+MD5SUM_x86_64="7dc6f10a8a86709ca371b2354ca8ae1c"
+REQUIRES="pcsc-lite"
+MAINTAINER="Vladislav Borisov"
+EMAIL="fsleg@t-rg.ws"