mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-04-28 18:02:38 +02:00
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:
parent
79ccd14d5d
commit
5100e15213
3 changed files with 6 additions and 5 deletions
4
BUILD.md
4
BUILD.md
|
@ -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):
|
||||
|
|
|
@ -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 \
|
||||
|
|
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue