mirror of
https://github.com/SFML/CSFML.git
synced 2025-10-19 03:04:47 +08:00
25 lines
416 B
Bash
Executable File
25 lines
416 B
Bash
Executable File
#!/bin/sh
|
|
# Alpine Linux doesn't come with bash by default, so we need to bootstrap everything with sh
|
|
|
|
# Automatically exit on error
|
|
set -e
|
|
|
|
apk add \
|
|
bash \
|
|
git \
|
|
freetype-dev \
|
|
libx11-dev \
|
|
libxrandr-dev \
|
|
libxcursor-dev \
|
|
eudev-dev \
|
|
mesa-dev \
|
|
flac-dev \
|
|
libogg-dev \
|
|
libvorbis-dev \
|
|
libpthread-stubs \
|
|
cmake \
|
|
make \
|
|
g++
|
|
|
|
./build.linux.sh alpine-x64
|