Files
S.P.L.U.R.T-Station-13/dependencies.sh
2021-01-31 10:50:49 +08:00

27 lines
610 B
Bash

#!/bin/sh
#Project dependencies file
#Final authority on what's required to fully build the project
# byond version
# Extracted from the Dockerfile. Change by editing Dockerfile's FROM command.
LIST="$(sed -n 's/.*byond:\([0-9]\+\)\.\([0-9]\+\).*/\1 \2/p' Dockerfile)"
export BYOND_MAJOR=${LIST% *}
export BYOND_MINOR=${LIST#* }
unset LIST
#rust_g git tag
export RUST_G_VERSION=0.4.7
#node version
export NODE_VERSION=12
# SpacemanDMM git tag
export SPACEMAN_DMM_VERSION=suite-1.6
# Extools git tag
export EXTOOLS_VERSION=v0.0.6
# Python version for mapmerge and other tools
export PYTHON_VERSION=3.6.8