b45b20aa53
Signed-off-by: Michael Mayer <michael@photoprism.app>
65 lines
1.8 KiB
Bash
Executable file
65 lines
1.8 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# This 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
|
|
|
|
# Determine the system architecture.
|
|
if [[ $PHOTOPRISM_ARCH ]]; then
|
|
SYSTEM_ARCH=$PHOTOPRISM_ARCH
|
|
else
|
|
SYSTEM_ARCH=$(uname -m)
|
|
fi
|
|
|
|
DESTARCH=${BUILD_ARCH:-$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
|
|
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
|
|
apt-get -qq install darktable
|
|
fi
|
|
;;
|
|
|
|
*)
|
|
echo "Unsupported Machine Architecture: \"$DESTARCH\"" 1>&2
|
|
exit 0
|
|
;;
|
|
esac
|
|
|
|
echo "Done."
|