New install scripts, raylib deps + odin.

This commit is contained in:
2026-05-14 08:26:03 +02:00
parent cc613a011c
commit 0113fd5454
2 changed files with 59 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
#!/bin/bash
# ---------------------------------------------------------------------------------
# Raylib-go dependency install recipe
# Target: Debian 13 Trixie
# Installs system libs needed for github.com/gen2brain/raylib-go
# ---------------------------------------------------------------------------------
set -e
echo "Installing raylib-go system dependencies..."
sudo apt-get update
sudo apt-get install -y \
build-essential \
pkg-config \
libasound2-dev \
libx11-dev \
libxrandr-dev \
libxi-dev \
libxcursor-dev \
libxinerama-dev \
libgl1-mesa-dev \
libglu1-mesa-dev \
libwayland-dev \
libxkbcommon-dev
echo ""
echo "✓ Raylib-go dependencies installed."
echo ""