1
0
mirror of synced 2024-09-24 19:48:25 +02:00
ImHex/dist/get_deps_debian.sh
2023-12-24 13:14:51 +01:00

27 lines
628 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 \
ccache \
libglfw3-dev \
libglm-dev \
libmagic-dev \
libmbedtls-dev \
libfreetype-dev \
libdbus-1-dev \
libcurl4-gnutls-dev \
libgtk-3-dev \
ninja-build \
libarchive-dev