1
0
mirror of synced 2024-09-25 03:58:27 +02:00
ImHex/dist/get_deps_debian.sh
2022-12-29 23:32:57 +01:00

25 lines
580 B
Bash
Executable File

#!/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 \
lld \
${PKGCONF:-} \
cmake \
make \
ccache \
libglfw3-dev \
libglm-dev \
libmagic-dev \
libmbedtls-dev \
libfreetype-dev \
libdbus-1-dev \
xdg-desktop-portal