Created
September 19, 2013 20:06
-
-
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)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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