27 lines
754 B
Bash
Executable File
27 lines
754 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Build the Windows binaries under Linux (requires wine)
|
|
set -eux -o pipefail
|
|
VERSION=$(git describe --abbrev=0 --tags)
|
|
OS=windows
|
|
ARCH_SUFFIX="x86"
|
|
|
|
# Allow the script to be run from anywhere
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
cd $DIR
|
|
|
|
# Step 1: download the DMD binaries
|
|
if [ ! -d dmd2 ] ; then
|
|
wget http://downloads.dlang.org/releases/2.x/2.079.0/dmd.2.079.0.windows.7z
|
|
7z x dmd.2.079.0.windows.7z > /dev/null
|
|
fi
|
|
|
|
# Step 2: Run DMD via wineconsole
|
|
archiveName="dscanner-$VERSION-$OS-$ARCH_SUFFIX.zip"
|
|
echo "Building $archiveName"
|
|
mkdir -p bin
|
|
git describe --tags > bin/githash.txt # no git installed under Wine
|
|
DC="$DIR/dmd2/windows/bin/dmd.exe" wine cmd /C build.bat
|
|
|
|
cd bin
|
|
zip "$archiveName" dscanner.exe
|