d2c6eac3bf
Currently we don't know of any installable packages for ARM64. Help welcome! Signed-off-by: Michael Mayer <michael@photoprism.app>
66 lines
2 KiB
Bash
Executable file
66 lines
2 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Installs Darktable on Linux
|
|
# bash <(curl -s https://raw.githubusercontent.com/photoprism/photoprism/develop/scripts/dist/install-darktable.sh)
|
|
|
|
PATH="/usr/local/sbin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/scripts:$PATH"
|
|
|
|
# abort if not executed as root
|
|
if [[ $(id -u) != "0" ]]; then
|
|
echo "Usage: run ${0##*/} as root" 1>&2
|
|
exit 1
|
|
fi
|
|
|
|
if [[ $PHOTOPRISM_ARCH ]]; then
|
|
SYSTEM_ARCH=$PHOTOPRISM_ARCH
|
|
else
|
|
SYSTEM_ARCH=$(uname -m)
|
|
fi
|
|
|
|
DESTARCH=${2:-$SYSTEM_ARCH}
|
|
|
|
set -e
|
|
|
|
. /etc/os-release
|
|
|
|
echo "Installing Darktable for ${DESTARCH^^}..."
|
|
|
|
case $DESTARCH in
|
|
amd64 | AMD64 | x86_64 | x86-64)
|
|
if [[ $VERSION_CODENAME == "jammy" ]]; then
|
|
echo 'deb http://download.opensuse.org/repositories/graphics:/darktable/xUbuntu_22.04/ /' | tee /etc/apt/sources.list.d/graphics:darktable.list
|
|
curl -fsSL https://download.opensuse.org/repositories/graphics:darktable/xUbuntu_22.04/Release.key | gpg --dearmor | tee /etc/apt/trusted.gpg.d/graphics_darktable.gpg > /dev/null
|
|
apt-get update
|
|
apt-get -qq install darktable
|
|
elif [[ $VERSION_CODENAME == "bullseye" ]]; then
|
|
apt-get update
|
|
apt-get -qq install -t bullseye-backports darktable
|
|
elif [[ $VERSION_CODENAME == "buster" ]]; then
|
|
apt-get update
|
|
apt-get -qq install -t buster-backports darktable
|
|
else
|
|
echo "install-darktable: installing standard amd64 (Intel 64-bit) package"
|
|
apt-get -qq install darktable
|
|
fi
|
|
;;
|
|
|
|
arm64 | ARM64 | aarch64)
|
|
if [[ $VERSION_CODENAME == "bullseye" ]]; then
|
|
apt-get update
|
|
apt-get -qq install -t bullseye-backports darktable
|
|
elif [[ $VERSION_CODENAME == "buster" ]]; then
|
|
apt-get update
|
|
apt-get -qq install -t buster-backports darktable
|
|
else
|
|
echo "install-darktable: installing standard arm64 (ARM 64-bit) package"
|
|
apt-get -qq install darktable
|
|
fi
|
|
;;
|
|
|
|
*)
|
|
echo "Unsupported Machine Architecture: \"$BUILD_ARCH\"" 1>&2
|
|
exit 0
|
|
;;
|
|
esac
|
|
|
|
echo "Done."
|