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:
12
scripts/linux/build-appimage-docker.sh
Normal file
12
scripts/linux/build-appimage-docker.sh
Normal 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
|
||||
"
|
||||
Reference in New Issue
Block a user