diff options
Diffstat (limited to 'scripts/install_deps_alpine.sh')
| -rw-r--r-- | scripts/install_deps_alpine.sh | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/scripts/install_deps_alpine.sh b/scripts/install_deps_alpine.sh new file mode 100644 index 0000000..2ebf131 --- /dev/null +++ b/scripts/install_deps_alpine.sh @@ -0,0 +1,23 @@ +#!/usr/bin/env bash +set -euo pipefail + +if ! command -v apk >/dev/null 2>&1; then + echo "This script is intended for Alpine Linux (apk not found)." >&2 + exit 1 +fi + +sudo apk update +sudo apk add --no-cache \ + build-base cmake ninja git pkgconf \ + lua5.4 lua5.4-dev \ + libx11-dev libxrandr-dev libxinerama-dev libxfixes-dev libxcursor-dev \ + libxcb-dev xcb-util-keysyms-dev xcb-util-wm-dev \ + libxft-dev \ + wayland-dev wayland-protocols \ + libxkbcommon-dev seatd-dev \ + libdrm-dev mesa-egl mesa-gbm \ + libinput-dev \ + pixman-dev \ + wlroots-dev || true + +echo "Dependencies installed." |
