1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-18 05:22:42 +01:00

AppImage build scripts, mk. 1

Produces working AppImage for bionic and newer distros.
This commit is contained in:
TheAssassin
2018-07-01 14:04:35 +02:00
parent 13224104e4
commit 8b0ca9ef81
2 changed files with 88 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#! /bin/bash
set -ex
REPO_ROOT=$(readlink -f $(dirname "$0")/../..)
docker run --rm -it -e NO_CLEANUP=1 -e CI=1 --device /dev/fuse:mrw -v $(readlink -f .):/ws openrct2/openrct2:ubuntu_amd64 bash -xc "
cd /ws
apt-get update
apt-get install -y wget libfuse2
bash -xe scripts/linux/build-appimage.sh
"