1
0
mirror of synced 2024-09-24 19:48:25 +02:00
ImHex/dist/get_deps_debian.sh

24 lines
573 B
Bash
Raw Normal View History

#!/usr/bin/env sh
# Install pkgconf (adds minimum dependencies) only if the equivalent pkf-config is not already installed.
if ! which pkg-config
then
PKGCONF="pkgconf"
fi
apt install -y \
build-essential \
gcc-12 \
g++-12 \
2022-01-13 21:31:01 +01:00
lld \
${PKGCONF:-} \
cmake \
make \
2021-09-19 21:49:09 +02:00
ccache \
libglfw3-dev \
libglm-dev \
libmagic-dev \
libmbedtls-dev \
python3-dev \
libfreetype-dev \
libgtk-3-dev