aboutsummaryrefslogtreecommitdiffstats
path: root/build-aux/build-windows.sh
blob: bdecc8b5610182750d77e587893bddfb658db492 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/bin/bash

# This script builds windows binaries, given a source tarball.
# It was designed to work on Fedora, and requires the following packages:
#
# mingw32-gcc mingw64-gcc zip
#
# This script must be called with the xz source tarball and the target version
# as arguments.


set -ex

[[ $# -eq 2 ]]


build() {
    local version=${2}
    local arch=${3}
    local build_dir="/tmp/blogc_build_${version}_${arch}"
    local dest_dir="/tmp/blogc-${version}-w${arch}"

    rm -rf "${build_dir}"
    mkdir -p "${build_dir}"
    tar -xvf "${1}" -C "${build_dir}"

    pushd "${build_dir}/blogc-${version}" &> /dev/null
    "mingw${arch}-configure"
    make
    popd &> /dev/null

    rm -rf "${dest_dir}"
    mkdir -p "${dest_dir}"
    cp "${build_dir}/blogc-${version}/.libs/blogc.exe" "${dest_dir}/"
    cp "${build_dir}/blogc-${version}/LICENSE" "${dest_dir}/"
    cp "${build_dir}/blogc-${version}/README.md" "${dest_dir}/"

    pushd "$(dirname ${dest_dir})" &> /dev/null
    zip "$(basename ${dest_dir}).zip" "$(basename ${dest_dir})"/*
    popd &> /dev/null

    mv "${dest_dir}.zip" .
}


for arch in 32 64; do
    build "$1" "$2" "${arch}"
done