#!/bin/bash set -e if [ $# -eq "0" ]; then echo "Usage: `basename $0` version [outputdir]" exit 1 fi TAG="$1" if [ $# -eq "1" ]; then OUTPUTDIR=$(pwd) else OUTPUTDIR=$2 fi command -v python >/dev/null 2>&1 || { echo >&2 "The OpenRA mod template requires python."; exit 1; } command -v make >/dev/null 2>&1 || { echo >&2 "The OpenRA mod template requires make."; exit 1; } command -v curl >/dev/null 2>&1 || command -v wget > /dev/null 2>&1 || { echo >&2 "The OpenRA mod template requires curl or wget."; exit 1; } command -v makensis >/dev/null 2>&1 || { echo >&2 "The OpenRA mod template requires makensis."; exit 1; } PACKAGING_DIR=$(python -c "import os; print(os.path.dirname(os.path.realpath('$0')))") echo "Building Windows package" ${PACKAGING_DIR}/windows/buildpackage.sh "${TAG}" "${OUTPUTDIR}" if [ $? -ne 0 ]; then echo "Windows package build failed." fi echo "Building macOS package" ${PACKAGING_DIR}/osx/buildpackage.sh "${TAG}" "${OUTPUTDIR}" if [ $? -ne 0 ]; then echo "macOS package build failed." fi if [[ "$OSTYPE" == "darwin"* ]]; then echo "Linux AppImage packaging requires a Linux host." else echo "Building Linux AppImage package" ${PACKAGING_DIR}/linux/buildpackage.sh "${TAG}" "${OUTPUTDIR}" if [ $? -ne 0 ]; then echo "Linux AppImage package build failed." fi fi echo "Package build done."