#!/bin/sh ## Copyright (c) 2014 Minoca Corp. All Rights Reserved. ## ## Script Name: ## ## package_binaries.sh ## ## Abstract: ## ## This script compresses the bin directory of the build output. SRCROOT, ## ARCH, and DEBUG must all be set. ## ## Author: ## ## Evan Green 13-May-2014 ## ## Environment: ## ## Minoca (Windows) Build ## SAVE_IFS="$IFS" IFS=' ' export SRCROOT=`echo $SRCROOT | sed 's_\\\\_/_g'` IFS="$SAVE_IFS" unset SAVE_IFS if test -z $SRCROOT; then echo "SRCROOT must be set." exit 1 fi if test -z $ARCH; then echo "ARCH must be set." exit 1 fi if test -z $DEBUG; then echo "DEBUG must be set." exit 1 fi export TMPDIR=$PWD export TEMP=$TMPDIR OUTROOT="$SRCROOT/$ARCH$VARIANT$DEBUG" export PATH="$SRCROOT/tools/win32/mingw/bin;$SRCROOT/tools;$OUTROOT/bin;$OUTROOT/testbin;$OUTROOT/bin/tools/bin;$SRCROOT/tools/win32/scripts;$SRCROOT/tools/win32/swiss;$SRCROOT/tools/win32/bin;$SRCROOT/tools/win32/ppython/app;$SRCROOT/tools/win32/ppython/App/Scripts;$PATH" tar -czf minoca-bin-${ARCH}${VARIANT}${DEBUG}-win32.tar.gz -C $OUTROOT/bin . exit 0