From 8e63c59e1e00ba0bfc115273a176fe117bafb08e Mon Sep 17 00:00:00 2001 From: Paul Gration Date: Wed, 24 Jul 2024 00:37:53 +0100 Subject: [PATCH 1/2] Remove duplicate apt dependency (libxcursor-dev) --- docs/Linux Dependencies.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Linux Dependencies.md b/docs/Linux Dependencies.md index f3f5c02bbf5a..2ef02f869af3 100644 --- a/docs/Linux Dependencies.md +++ b/docs/Linux Dependencies.md @@ -68,6 +68,6 @@ The full command is as follows: ladspa-sdk \ libcurl4-openssl-dev \ libfreetype-dev libfontconfig1-dev \ - libx11-dev libxcomposite-dev libxcursor-dev libxcursor-dev libxext-dev libxinerama-dev libxrandr-dev libxrender-dev \ + libx11-dev libxcomposite-dev libxcursor-dev libxext-dev libxinerama-dev libxrandr-dev libxrender-dev \ libwebkit2gtk-4.1-dev \ libglu1-mesa-dev mesa-common-dev From 2c8109373e20f708e82b896653f044bedfb6fba4 Mon Sep 17 00:00:00 2001 From: Paul Gration Date: Wed, 24 Jul 2024 00:48:50 +0100 Subject: [PATCH 2/2] List sorted apt dependencies on separate lines --- docs/Linux Dependencies.md | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/docs/Linux Dependencies.md b/docs/Linux Dependencies.md index 2ef02f869af3..a4ce53c05221 100644 --- a/docs/Linux Dependencies.md +++ b/docs/Linux Dependencies.md @@ -64,10 +64,19 @@ available during runtime. The full command is as follows: sudo apt update - sudo apt install libasound2-dev libjack-jackd2-dev \ - ladspa-sdk \ + sudo apt install ladspa-sdk \ + libasound2-dev \ libcurl4-openssl-dev \ - libfreetype-dev libfontconfig1-dev \ - libx11-dev libxcomposite-dev libxcursor-dev libxext-dev libxinerama-dev libxrandr-dev libxrender-dev \ + libfontconfig1-dev \ + libfreetype-dev \ + libglu1-mesa-dev \ + libjack-jackd2-dev \ libwebkit2gtk-4.1-dev \ - libglu1-mesa-dev mesa-common-dev + libx11-dev \ + libxcomposite-dev \ + libxcursor-dev \ + libxext-dev \ + libxinerama-dev \ + libxrandr-dev \ + libxrender-dev \ + mesa-common-dev