From e2b6eef29526fcea57625b7cdcfb317dbfad395c Mon Sep 17 00:00:00 2001 From: KtheVeg <60745091+KtheVeg@users.noreply.github.com> Date: Tue, 1 Aug 2023 12:53:14 -0500 Subject: [PATCH] Adding libcurl library to ubuntu deps since packaged library has broken CMake file. --- Building-for-Linux.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Building-for-Linux.md b/Building-for-Linux.md index 93923ac..cbc5598 100644 --- a/Building-for-Linux.md +++ b/Building-for-Linux.md @@ -9,7 +9,7 @@ ### For Ubuntu (22.04 and up)/Debian with Dolphin versions ~5.0-13001 or newer Ubuntu **_18.04_** and _**20.04**_ users, please install QT6 from source or an outside repo. One way to do so is to add [this PPA](https://launchpad.net/~okirby/+archive/ubuntu/qt6-backports) by running `sudo add-apt-repository ppa:okirby/qt6-backports && sudo apt update` before running the next command. ```sh -sudo apt install build-essential git cmake ffmpeg libavcodec-dev libavformat-dev libavutil-dev libswscale-dev libevdev-dev libusb-1.0-0-dev libxrandr-dev libxi-dev libpangocairo-1.0-0 qt6-base-private-dev libbluetooth-dev libasound2-dev libpulse-dev libgl1-mesa-dev +sudo apt install build-essential git cmake ffmpeg libavcodec-dev libavformat-dev libavutil-dev libswscale-dev libevdev-dev libusb-1.0-0-dev libxrandr-dev libxi-dev libpangocairo-1.0-0 qt6-base-private-dev libbluetooth-dev libasound2-dev libpulse-dev libgl1-mesa-dev libcurl4-openssl-dev sudo apt install libudev-dev libsystemd-dev || sudo apt install libeudev-dev #distros without systemd like AntiX must use eudev instead ```