DEPENDENCIES
The Shallow version of ForSyDe can be built using standard Haskell.
INSTALLATION
See http://www.haskell.org/haskellwiki/Cabal/How_to_install_a_Cabal_package
Here is a summary on how to install ForSyDe manually:
To install globally, for the whole system (requires admin permissions):
$ ./Setup.hs configure
$ ./Setup.hs build
$ ./Setup.hs haddock # generate documentation, optional,
# requires Haddock > 2.0 due to the use of TH
$ sudo ./Setup.hs install
To install locally and just for your own user:
$ ./Setup.hs configure --user --prefix=The/selected/local/directory
$ ./Setup.hs build
$ ./Setup.hs haddock # generate documentation, optional,
# requires Haddock > 2.0 due to the use of TH
$ ./Setup.hs install