From 21305853ce1d33b59b6375d1bf153329e6b3503b Mon Sep 17 00:00:00 2001 From: Eric Callahan Date: Sun, 31 Oct 2021 06:03:56 -0400 Subject: [PATCH] scripts: add liblmdb-dev and libjpeg-dev to dependencies These packages can be required on systems that need to build python wheels. Signed-off-by: Eric Callahan --- scripts/install-moonraker.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install-moonraker.sh b/scripts/install-moonraker.sh index 192fffc..4cb5e28 100755 --- a/scripts/install-moonraker.sh +++ b/scripts/install-moonraker.sh @@ -37,8 +37,8 @@ cleanup_legacy() { install_packages() { PKGLIST="python3-virtualenv python3-dev libopenjp2-7 python3-libgpiod" - PKGLIST="${PKGLIST} curl libcurl4-openssl-dev libssl-dev liblmdb0" - PKGLIST="${PKGLIST} libsodium-dev zlib1g-dev" + PKGLIST="${PKGLIST} curl libcurl4-openssl-dev libssl-dev liblmdb-dev" + PKGLIST="${PKGLIST} libsodium-dev zlib1g-dev libjpeg-dev" # Update system package info report_status "Running apt-get update..."