diff options
| author | srdusr <trevorgray@srdusr.com> | 2025-09-26 12:23:19 +0200 |
|---|---|---|
| committer | srdusr <trevorgray@srdusr.com> | 2025-09-26 12:23:19 +0200 |
| commit | e4a0432383331e013808a97b7c24707e4ddc4726 (patch) | |
| tree | 3ef4465be03bc7b92a0b048f02f76475045404b6 /scripts/install_deps_ubuntu.sh | |
| parent | 105732dde10b317a81d5a10a3f66b315d6f85015 (diff) | |
| download | srdwm-e4a0432383331e013808a97b7c24707e4ddc4726.tar.gz srdwm-e4a0432383331e013808a97b7c24707e4ddc4726.zip | |
Initial Commit
Diffstat (limited to 'scripts/install_deps_ubuntu.sh')
| -rw-r--r-- | scripts/install_deps_ubuntu.sh | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/scripts/install_deps_ubuntu.sh b/scripts/install_deps_ubuntu.sh new file mode 100644 index 0000000..4939557 --- /dev/null +++ b/scripts/install_deps_ubuntu.sh @@ -0,0 +1,22 @@ +#!/usr/bin/env bash +set -euo pipefail + +sudo apt-get update +sudo apt-get install -y \ + build-essential cmake ninja-build pkg-config git \ + liblua5.4-dev \ + libx11-dev libxrandr-dev libxinerama-dev libxfixes-dev libxcursor-dev \ + libxcb1-dev libxcb-keysyms1-dev libxcb-icccm4-dev libxcb-ewmh-dev libxcb-randr0-dev \ + libxft-dev \ + libwayland-dev wayland-protocols \ + libxkbcommon-dev libseat-dev \ + libdrm-dev libegl1-mesa-dev libgbm-dev libudev-dev libinput-dev \ + libpixman-1-dev \ + libwlroots-dev || true + +# Fallback for distros that use wlroots-dev instead of libwlroots-dev +if ! pkg-config --exists wlroots; then + sudo apt-get install -y wlroots-dev || true +fi + +echo "Dependencies installed." |
