From 9aec56f477f3b770447b61059b40a44becfcfd05 Mon Sep 17 00:00:00 2001 From: neher-igel Date: Mon, 18 Nov 2024 15:51:59 -0700 Subject: [PATCH] LibreOffice builder 22.04 LibreOffice builder 22.04 --- CP_Source/Office/LibreOffice/README.md | 2 +- CP_Source/Office/LibreOffice/build/build-libreoffice-cp.sh | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CP_Source/Office/LibreOffice/README.md b/CP_Source/Office/LibreOffice/README.md index f6aff2b0..00a00ffb 100644 --- a/CP_Source/Office/LibreOffice/README.md +++ b/CP_Source/Office/LibreOffice/README.md @@ -2,7 +2,7 @@ ----- -**NOTE:** Builder works for OS11 (build with Ubuntu 18.04 - bionic) and OS12 (build with Ubuntu 20.04 - focal) +**NOTE:** Builder works for OS11 (build with Ubuntu 22.04 - jammy) and OS12 (build with Ubuntu 20.04 - focal) ----- diff --git a/CP_Source/Office/LibreOffice/build/build-libreoffice-cp.sh b/CP_Source/Office/LibreOffice/build/build-libreoffice-cp.sh index 8eaca660..c89ee44a 100755 --- a/CP_Source/Office/LibreOffice/build/build-libreoffice-cp.sh +++ b/CP_Source/Office/LibreOffice/build/build-libreoffice-cp.sh @@ -3,7 +3,7 @@ #trap read debug # Creating an IGELOS CP -## Development machine Ubuntu (OS11 = 18.04; OS12 = 20.04) +## Development machine Ubuntu (OS11 = 22.04; OS12 = 20.04) CP="libreoffice" ZIP_LOC="https://github.com/IGEL-Community/IGEL-Custom-Partitions/raw/master/CP_Packages/Office" ZIP_FILE="LibreOffice" @@ -20,14 +20,14 @@ MISSING_LIBS_OS12="" VERSION_ID=$(grep "^VERSION_ID" /etc/os-release | cut -d "\"" -f 2) -if [ "${VERSION_ID}" = "18.04" ]; then +if [ "${VERSION_ID}" = "22.04" ]; then MISSING_LIBS="${MISSING_LIBS_OS11}" IGELOS_ID="OS11" elif [ "${VERSION_ID}" = "20.04" ]; then MISSING_LIBS="${MISSING_LIBS_OS12}" IGELOS_ID="OS12" else - echo "Not a valid Ubuntu OS release. OS11 needs 18.04 (bionic) and OS12 needs 20.04 (focal)." + echo "Not a valid Ubuntu OS release. OS11 needs 22.04 (jammy) and OS12 needs 20.04 (focal)." exit 1 fi