Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added thinlinc specification file #870

Merged
merged 4 commits into from
Sep 6, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
22 changes: 22 additions & 0 deletions 01-main/packages/thinlinc
@@ -0,0 +1,22 @@
DEFVER=1
ARCHS_SUPPORTED="amd64 armhf"
local TARGET_ARCH="xxx"

case ${HOST_ARCH} in
amd64|intel)
TARGET_ARCH=amd64;;
arm32|armv6-32|armv6|armhf|armv7)
TARGET_ARCH=armhf;;
*)
TARGET_ARCH=${HOST_ARCH};;
esac

WEBSITE="https://www.cendio.com/thinlinc/"
get_website "${WEBSITE}/download/"
if [ "${ACTION}" != "prettylist" ]; then
VERSION_PUBLISHED="$(grep deb "${CACHE_FILE}" | grep thinlinc|grep -v sha|tail -n2|head -n1|awk -F "_" '{print $2}')"
URL="https://www.cendio.com/downloads/clients/thinlinc-client_${VERSION_PUBLISHED}_${TARGET_ARCH}.deb"
fi

PRETTY_NAME="Thinlinc"
SUMMARY="ThinLinc is a software that enables organizations to implement a Linux server-based computing (SBC) infrastructure."