git-annex/standalone/windows/build-simple.sh

39 lines
989 B
Bash
Raw Normal View History

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
if ! withcyg cabal build; then
ghc --make Build/EvilLinker -fno-warn-tabs
withcyg Build/EvilLinker
fi
2013-12-10 04:45:21 +00:00
# Build the installer
cabal install nsis
ghc --make Build/NullSoftInstaller.hs -fno-warn-tabs
PATH="$PATH:/cygdrive/c/Program Files/NSIS" Build/NullSoftInstaller.exe