Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dosbox-staging/dosbox-staging.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkcgen <1557255+kcgen@users.noreply.github.com>2021-08-19 04:36:10 +0300
committerkcgen <1557255+kcgen@users.noreply.github.com>2021-08-19 05:21:10 +0300
commit1f1e89740e379c4d0779a08a762748eaecb65d2a (patch)
treec97c87795624502e111378f3073a35233beb8cb5 /README.md
parent596842883d65aa69ab482faa608301e7295676e4 (diff)
Differentiate meson installation on Debian/Ubuntu versions
Diffstat (limited to 'README.md')
-rw-r--r--README.md13
1 files changed, 12 insertions, 1 deletions
diff --git a/README.md b/README.md
index 9d2e7a56d..b8c5f8472 100644
--- a/README.md
+++ b/README.md
@@ -134,10 +134,21 @@ sudo dnf install ccache gcc-c++ meson alsa-lib-devel libpng-devel \
``` shell
# Debian, Ubuntu
-sudo apt install ccache build-essential meson libasound2-dev libpng-dev \
+sudo apt install ccache build-essential libasound2-dev libpng-dev \
libsdl2-dev libsdl2-net-dev libopusfile-dev libfluidsynth-dev
```
+## Install Meson on Debian-10 "Buster" or Ubuntu-20.04 and older
+``` shell
+sudo apt install python3-setuptools
+sudo pip3 install --upgrade meson ninja
+```
+
+## Install Meson on Debian-11 "Bullseye" or Ubuntu-21.04 and newer
+``` shell
+sudo apt install meson
+```
+
``` shell
# Arch, Manjaro
sudo pacman -S ccache gcc meson alsa-lib libpng sdl2 sdl2_net opusfile \