2013-12-06 00:40:28 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# Script to build git-annex on windows. Run by build.bat
|
|
|
|
|
|
|
|
set -e
|
2013-12-06 01:02:27 +00:00
|
|
|
set -x
|
2013-12-06 00:40:28 +00:00
|
|
|
|
2015-09-01 22:05:15 +00:00
|
|
|
PATH="/c/Program Files/Git/cmd:/c/Program Files/NSIS:$PATH"
|
2013-12-06 00:40:28 +00:00
|
|
|
|
|
|
|
# Run a command with the cygwin environment available.
|
|
|
|
# However, programs not from cygwin are preferred.
|
|
|
|
withcyg () {
|
|
|
|
PATH="$PATH:/c/cygwin/bin" "$@"
|
|
|
|
}
|
2013-12-11 15:23:34 +00:00
|
|
|
withcygpreferred () {
|
|
|
|
PATH="/c/cygwin/bin:$PATH" "$@"
|
|
|
|
}
|
2013-12-06 00:40:28 +00:00
|
|
|
|
|
|
|
# Install haskell dependencies.
|
|
|
|
# cabal install is not run in cygwin, because we don't want configure scripts
|
|
|
|
# for haskell libraries to link them with the cygwin library.
|
2015-04-21 18:10:30 +00:00
|
|
|
if ! cabal install --only-dependencies; then
|
|
|
|
cabal update || true
|
|
|
|
cabal install --only-dependencies
|
|
|
|
fi
|
2013-12-06 00:40:28 +00:00
|
|
|
|
|
|
|
# Build git-annex
|
2013-12-07 01:12:47 +00:00
|
|
|
if [ ! -e "dist/setup-config" ]; then
|
|
|
|
withcyg cabal configure
|
|
|
|
fi
|
2013-12-09 19:38:57 +00:00
|
|
|
if ! withcyg cabal build; then
|
2015-09-01 22:06:43 +00:00
|
|
|
ghc --make Build/EvilLinker -fno-warn-tabs
|
2013-12-09 19:38:57 +00:00
|
|
|
withcyg Build/EvilLinker
|
|
|
|
fi
|
2013-12-10 04:45:21 +00:00
|
|
|
|
|
|
|
# Build the installer
|
|
|
|
cabal install nsis
|
2015-09-01 22:06:43 +00:00
|
|
|
ghc --make Build/NullSoftInstaller.hs -fno-warn-tabs
|
2015-09-11 16:32:00 +00:00
|
|
|
PATH="$PATH:/cygdrive/c/Program Files/NSIS" Build/NullSoftInstaller.exe
|