ImHex/dist/get_deps_debian.sh

27 lines
628 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 20:31:01 +00:00
lld \
${PKGCONF:-} \
cmake \
2021-09-19 19:49:09 +00:00
ccache \
libglfw3-dev \
libglm-dev \
libmagic-dev \
libmbedtls-dev \
libfreetype-dev \
libdbus-1-dev \
libcurl4-gnutls-dev \
libgtk-3-dev \
2023-12-24 12:14:51 +00:00
ninja-build \
libarchive-dev