mirror of
https://github.com/GerbilSoft/rvthtool.git
synced 2025-06-18 11:35:33 -04:00
17 lines
268 B
Bash
Executable File
17 lines
268 B
Bash
Executable File
#!/bin/sh
|
|
set -ev
|
|
|
|
add-apt-repository --remove "deb http://apt.postgresql.org/pub/repos/apt/ bionic-pgdg main"
|
|
|
|
apt-get update
|
|
apt-get -y install \
|
|
cmake \
|
|
pkg-config \
|
|
libgmp-dev \
|
|
nettle-dev \
|
|
libudev-dev \
|
|
\
|
|
qtbase5-dev \
|
|
qttools5-dev \
|
|
qttools5-dev-tools
|