blob: 1bab587f8b2eb3e8acd0aeddc33a609c6eb7aa48 (
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
|
#!/bin/sh
#
# This script is run by the jenkins autobuilder, in a mingw environment,
# to build git-annex for Windows.
set -x
set -e
HP="/c/Program Files (x86)/Haskell Platform/2012.4.0.0"
FLAGS="-Webapp -Assistant -XMPP"
PATH="$HP/bin:$HP/lib/extralibs/bin:$PATH"
# Run a command in the cygwin environment.
incygwin () {
PATH="/c/cygwin/bin:$PATH" "$@"
}
# Install haskell dependencies.
cabal update
cabal list --installed
# cabal install is not run in cygwin, because we don't want configure scripts
# for haskell libraries to link them with the cygwin library.
cabal install --only-dependencies -f"$FLAGS"
# Build git-annex
incygwin cabal configure -f"$FLAGS"
incygwin cabal build
# Build the installer
cabal install nsis
ghc --make Build/NullSoftInstaller.hs
Build/NullSoftInstaller.exe
|