view scripts/build_unix.sh @ 634:20d6aef11249 default tip

Fix iCCC profiles in PNGs to avoid verbose warnings from libpng.
author Simon Cross <hodgestar@gmail.com>
date Fri, 27 Jan 2023 23:32:07 +0100
parents 9f3c2c0fcf01
children
line wrap: on
line source

#!/bin/bash

GAME_NAME="nine-tales"

NT_VERSION=`sed -ne 's/VERSION_STR = "\(.*\)"/\1/p' setup.py`
BUILD_NAME="${GAME_NAME}-${NT_VERSION}"
BUILD_FOLDER="build/${GAME_NAME}"
TARBALL_NAME="${BUILD_NAME}.tgz"

rm -rf ${BUILD_FOLDER}
mkdir -p ${BUILD_FOLDER} dist

hg archive ${BUILD_FOLDER}/ -I LICENSE.txt -I README.txt  -I setup.py -I run_game.py -I scripts -I data -I skaapsteker

cd build
tar czf ../dist/${TARBALL_NAME} ${GAME_NAME}