kitty/install-if-linux-debian.sh
Ayo b0a4ee8955
Some checks failed
CI / Linux (python=3.13 cc=clang sanitize=1) (push) Has been cancelled
CI / Linux (python=3.11 cc=gcc sanitize=0) (push) Has been cancelled
CI / Linux (python=3.12 cc=gcc sanitize=1) (push) Has been cancelled
CI / Linux package (push) Has been cancelled
CI / Bundle test (macos-latest) (push) Has been cancelled
CI / Bundle test (ubuntu-latest) (push) Has been cancelled
CI / macOS Brew (push) Has been cancelled
CI / Test ./dev.sh and benchmark (push) Has been cancelled
chore: add linux debian deps install
2026-06-22 21:14:45 +02:00

28 lines
501 B
Bash
Executable file

if [[ "$OSTYPE" == "linux-gnu"* ]]; then
## Update package repos
sudo apt update
## Build deps
sudo apt install -y \
liblcms2-dev \
libfontconfig-dev \
libssl-dev \
libpython3-dev \
libxxhash-dev \
libsimde-dev \
libcairo2-dev \
## X11 development deps
sudo apt install -y \
libdbus-1-dev \
libxcursor-dev \
libxrandr-dev \
libxi-dev \
libxinerama-dev \
libgl1-mesa-dev \
libxkbcommon-x11-dev \
libfontconfig-dev \
libx11-xcb-dev
fi