28 lines
No EOL
1,015 B
Docker
28 lines
No EOL
1,015 B
Docker
FROM ubuntu:jammy
|
|
|
|
RUN apt-get update
|
|
RUN apt-get full-upgrade -qy
|
|
RUN apt-get install libgl1-mesa-dev libglu1-mesa-dev libpulse-dev build-essential python3-pip git libssl-dev libxinerama-dev libxrandr-dev libfontconfig-dev libfreetype6-dev gcc-11 cmake
|
|
|
|
RUN pip3 install --upgrade pip
|
|
RUN pip install llbase autobuild llsd
|
|
|
|
WORKDIR /firestorm
|
|
RUN git clone https://github.com/FirestormViewer/3p-fmodstudio
|
|
RUN git clone https://github.com/FirestormViewer/fs-build-variables.git
|
|
WORKDIR /firestorm/3p-fmodstudio
|
|
|
|
COPY ./fmodstudioapi20222linux.tar.gz ./
|
|
|
|
RUN autobuild build -A64 --all
|
|
RUN autobuild package -A64
|
|
|
|
RUN mv /firestorm/3p-fmodstudio/*.bz2 /firestorm/linux-fmod.tar.bz2
|
|
|
|
WORKDIR /firestorm
|
|
RUN echo "#!/bin/bash" >> installables.sh
|
|
RUN echo "autobuild installables edit fmodstudio platform=linux hash=$(md5sum linux-fmod.tar.bz2) url=file:///firestorm/linux-fmod.tar.bz2" >> installables.sh
|
|
|
|
RUN echo "export AUTOBUILD_VARIABLES_FILE=/firestorm/fs-build-variables/variables" >> env.sh
|
|
|
|
WORKDIR /builder |