mirror of
https://github.com/SFML/CSFML.git
synced 2025-10-19 20:35:25 +08:00
23 lines
322 B
Bash
23 lines
322 B
Bash
#!/bin/bash
|
|
|
|
# Automatically exit on error
|
|
set -e
|
|
|
|
apt-get update
|
|
|
|
apt-get install -y \
|
|
git \
|
|
libfreetype6-dev \
|
|
xorg-dev \
|
|
libxrandr-dev \
|
|
libxcursor-dev \
|
|
libudev-dev \
|
|
libgl1-mesa-dev \
|
|
libflac-dev \
|
|
libogg-dev \
|
|
libvorbis-dev \
|
|
cmake \
|
|
g++
|
|
|
|
./build.linux.sh linux-arm64
|