Add missing build dependencies for Ubuntu Focal

Add some missing build dependencies that we encountered for Ubuntu
Focal, but they apply to the rest of the Debian-based distros as well.
This commit is contained in:
Alex Pyrgiotis 2023-02-16 23:47:47 +02:00
parent 79ccd14d5d
commit 5100e15213
No known key found for this signature in database
GPG key ID: B6C15EBA0357C9AA
3 changed files with 6 additions and 5 deletions

View file

@ -5,8 +5,8 @@
Install dependencies:
```sh
sudo apt install -y podman dh-python make libqt5gui5 \
python3 python3-dev python3-venv python3-pip python3-stdeb
sudo apt install -y podman dh-python build-essential fakeroot make libqt5gui5 \
python3 python3-dev python3-venv python3-pip python3-stdeb python3-all
```
Install poetry (you may need to add `~/.local/bin/` to your `PATH` first):

View file

@ -60,7 +60,8 @@ ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update \
&& apt-get install -y --no-install-recommends podman uidmap dh-python make \
libqt5gui5 python3 python3-dev python3-venv python3-pip python3-stdeb \
build-essential fakeroot libqt5gui5 python3 python3-dev python3-venv \
python3-pip python3-stdeb python3-all \
&& rm -rf /var/lib/apt/lists/*
RUN apt-get update \
&& apt-get install -y --no-install-recommends mupdf \

View file

@ -155,8 +155,8 @@ CONTENT_BUILD_DEBIAN_UBUNTU = r"""## Debian/Ubuntu
Install dependencies:
```sh
sudo apt install -y podman dh-python make libqt5gui5 \
python3 python3-dev python3-venv python3-pip python3-stdeb
sudo apt install -y podman dh-python build-essential fakeroot make libqt5gui5 \
python3 python3-dev python3-venv python3-pip python3-stdeb python3-all
```
Install poetry (you may need to add `~/.local/bin/` to your `PATH` first):