2015-03-07 17:30:29 -05:00
|
|
|
#!/bin/bash
|
2015-03-06 17:48:00 -05:00
|
|
|
|
2015-04-18 03:18:00 +05:30
|
|
|
# Installation for Ubuntu Linux (tested on v14.10) from IHaskell repo directory.
|
2015-03-06 21:38:12 -05:00
|
|
|
# TODO Split out setup for installation from Hackage released versions.
|
2015-03-06 17:48:00 -05:00
|
|
|
|
2015-04-18 03:18:00 +05:30
|
|
|
# Install the dependencies as root user
|
|
|
|
sudo ./root-deps.sh
|
2015-03-06 17:48:00 -05:00
|
|
|
|
2015-03-07 00:02:57 -05:00
|
|
|
# Make sure to have basic tools installed.
|
|
|
|
cabal update
|
|
|
|
cabal install happy alex
|
|
|
|
cabal install cpphs
|
|
|
|
cabal install gtk2hs-buildtools
|
2015-03-06 21:38:12 -05:00
|
|
|
|
2015-04-18 03:18:00 +05:30
|
|
|
# Build ihaskell, and all the display packages
|
2015-03-06 17:48:00 -05:00
|
|
|
./build.sh all
|