2018-12-01 05:15:57 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# safety subshell to avoid executing anything in case this script is not downloaded properly
|
|
|
|
(
|
|
|
|
|
2019-01-24 13:36:44 +00:00
|
|
|
: "${GHCUP_INSTALL_BASE_PREFIX:=$HOME}"
|
|
|
|
|
2018-12-01 05:15:57 +00:00
|
|
|
die() {
|
|
|
|
(>&2 printf "\\033[0;31m%s\\033[0m\\n" "$1")
|
|
|
|
exit 2
|
|
|
|
}
|
|
|
|
|
|
|
|
edo()
|
|
|
|
{
|
2019-04-11 02:42:29 +00:00
|
|
|
"$@" || die "\"$*\" failed!"
|
2018-12-01 05:15:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
echo
|
|
|
|
echo "Welcome to Haskell!"
|
|
|
|
echo
|
|
|
|
echo "This will download and install the Glasgow Haskell Compiler (GHC) for "
|
|
|
|
echo "the Haskell programming language, and the Cabal build tool."
|
|
|
|
echo
|
|
|
|
echo "It will add the 'cabal', 'ghc', and 'ghcup' executables to bin directory "
|
|
|
|
echo "located at: "
|
|
|
|
echo
|
2019-01-24 13:36:44 +00:00
|
|
|
echo " $GHCUP_INSTALL_BASE_PREFIX/.ghcup/bin"
|
2018-12-01 05:15:57 +00:00
|
|
|
echo
|
2019-01-24 13:36:44 +00:00
|
|
|
echo "and create the environment file $GHCUP_INSTALL_BASE_PREFIX/.ghcup/env"
|
2018-12-01 05:15:57 +00:00
|
|
|
echo "which you should source in your ~/.bashrc or similar to get the required"
|
|
|
|
echo "PATH components."
|
|
|
|
echo
|
|
|
|
|
|
|
|
if [ -z "${BOOTSTRAP_HASKELL_NONINTERACTIVE}" ] ; then
|
2019-04-02 03:39:21 +00:00
|
|
|
echo "To proceed with the ghcup installation press enter, to cancel press ctrl-c."
|
2018-12-01 05:15:57 +00:00
|
|
|
echo "Note that this script can be re-run at any given time."
|
|
|
|
echo
|
|
|
|
# Wait for user input to continue.
|
|
|
|
# shellcheck disable=SC2034
|
|
|
|
read -r answer </dev/tty
|
|
|
|
fi
|
|
|
|
|
2019-01-24 13:36:44 +00:00
|
|
|
edo mkdir -p "${GHCUP_INSTALL_BASE_PREFIX}"/.ghcup/bin
|
2018-12-01 05:15:57 +00:00
|
|
|
|
|
|
|
if command -V "ghcup" >/dev/null 2>&1 ; then
|
|
|
|
if [ -z "${BOOTSTRAP_HASKELL_NO_UPGRADE}" ] ; then
|
|
|
|
edo ghcup upgrade
|
|
|
|
fi
|
|
|
|
else
|
2019-05-24 08:22:40 +00:00
|
|
|
edo curl --silent https://gitlab.haskell.org/haskell/ghcup/raw/master/ghcup > "${GHCUP_INSTALL_BASE_PREFIX}"/.ghcup/bin/ghcup
|
2019-01-24 13:36:44 +00:00
|
|
|
edo chmod +x "${GHCUP_INSTALL_BASE_PREFIX}"/.ghcup/bin/ghcup
|
2018-12-01 05:15:57 +00:00
|
|
|
|
2019-01-24 13:36:44 +00:00
|
|
|
cat <<-EOF > "${GHCUP_INSTALL_BASE_PREFIX}"/.ghcup/env || die "Failed to create env file"
|
|
|
|
export PATH="\$HOME/.cabal/bin:\${GHCUP_INSTALL_BASE_PREFIX:=\$HOME}/.ghcup/bin:\$PATH"
|
2018-12-01 05:15:57 +00:00
|
|
|
EOF
|
|
|
|
# shellcheck disable=SC1090
|
2019-01-24 13:36:44 +00:00
|
|
|
edo . "${GHCUP_INSTALL_BASE_PREFIX}"/.ghcup/env
|
2018-12-01 05:15:57 +00:00
|
|
|
fi
|
|
|
|
|
2019-04-02 03:39:21 +00:00
|
|
|
echo
|
|
|
|
echo "To install and run GHC you need the following dependencies:"
|
|
|
|
echo " $(ghcup print-system-reqs)"
|
|
|
|
echo
|
|
|
|
|
|
|
|
if [ -z "${BOOTSTRAP_HASKELL_NONINTERACTIVE}" ] ; then
|
|
|
|
echo "You may want to install these now, then press enter to proceed"
|
|
|
|
echo "or press ctrl-c to abort."
|
|
|
|
echo "Installation may take a while."
|
|
|
|
echo
|
|
|
|
|
|
|
|
# Wait for user input to continue.
|
|
|
|
# shellcheck disable=SC2034
|
|
|
|
read -r answer </dev/tty
|
|
|
|
fi
|
|
|
|
|
2019-04-11 02:35:37 +00:00
|
|
|
edo ghcup --cache install
|
2018-12-01 05:15:57 +00:00
|
|
|
|
|
|
|
edo ghcup set
|
2019-04-11 02:35:37 +00:00
|
|
|
edo ghcup --cache install-cabal
|
2018-12-01 05:15:57 +00:00
|
|
|
|
|
|
|
edo cabal new-update
|
|
|
|
|
|
|
|
printf "\\033[0;35m%s\\033[0m\\n" ""
|
|
|
|
printf "\\033[0;35m%s\\033[0m\\n" "Installation done!"
|
|
|
|
printf "\\033[0;35m%s\\033[0m\\n" ""
|
2019-01-24 13:36:44 +00:00
|
|
|
printf "\\033[0;35m%s\\033[0m\\n" "Don't forget to source $GHCUP_INSTALL_BASE_PREFIX/.ghcup/env in your ~/.bashrc or similar."
|
2018-12-01 05:15:57 +00:00
|
|
|
printf "\\033[0;35m%s\\033[0m\\n" ""
|
|
|
|
|
|
|
|
|
|
|
|
)
|
2019-04-02 03:39:21 +00:00
|
|
|
|
|
|
|
# vim: tabstop=4 shiftwidth=4 expandtab
|
|
|
|
|