Files
CSFML/tools/nuget/docker.alpine-x64.sh
2024-06-27 19:35:10 +02:00

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