Skip to content

Instantly share code, notes, and snippets.

@ManuelBlanc
Created October 27, 2016 10:18
Show Gist options
  • Save ManuelBlanc/de5f116244e281c39a4aa045490347b6 to your computer and use it in GitHub Desktop.
Save ManuelBlanc/de5f116244e281c39a4aa045490347b6 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
{ # Piping
set -eu
URL='https://www.haskell.org/hugs/downloads/2006-09/hugs98-Sep2006.tar.gz'
FILE="$(basename "$URL")"
curl -O "$URL"
tar xvzf "$FILE"
cd '${FILE%.tar.gz}'
./configure --prefix="$HOME/UnidadH"
make install
} # /Piping
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment