File: docker.linux-musl-x64.sh

package info (click to toggle)
libcsfml 2.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 2,176 kB
  • sloc: cpp: 6,052; ansic: 2,530; sh: 790; makefile: 8
file content (25 lines) | stat: -rw-r--r-- 442 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/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 \
    openal-soft-dev \
    libpthread-stubs \
    cmake \
    make \
    g++

./build.linux.sh linux-musl-x64