Skip to content

Instantly share code, notes, and snippets.

@AlainODea
Created September 19, 2013 20:06
Show Gist options
  • Save AlainODea/6629115 to your computer and use it in GitHub Desktop.
Save AlainODea/6629115 to your computer and use it in GitHub Desktop.
Haskell Platform 2013.2.0.0 on Ubuntu 13.04 (Work in Progress)
#!/usr/bin/env bash
sudo apt-get install --assume-yes ghc libncurses5-dev mesa-common-dev freeglut3-dev
wget http://www.haskell.org/ghc/dist/7.6.3/ghc-7.6.3-src.tar.bz2
wget http://lambda.haskell.org/platform/download/2013.2.0.0/haskell-platform-2013.2.0.0.tar.gz
tar xjvf ghc-7.6.3-src.tar.bz2
tar xzvf haskell-platform-2013.2.0.0.tar.gz
pushd ghc-7.6.3
./configure
make -j $(nproc)
sudo make install
popd
pushd haskell-platform-2013.2.0.0
./configure
make -j $(nproc)
sudo make install
popd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment