Fedora18へhaskell(ghc-7.4.2), haskell-platform-2012.4.0.0, pandocをインストールするには、次のようなインストールスクリプトを用意して実行します。
#!/bin/sh sudo yum -y install ghc sudo yum -y install freeglut-devel mkdir -p $HOME/applications/haskell/src cd $HOME/applications/haskell/src wget http://lambda.haskell.org/platform/download/2012.4.0.0/haskell-platform-2012.4.0.0.tar.gz wget http://www.haskell.org/ghc/dist/7.4.2/ghc-7.4.2-x86_64-unknown-linux.tar.bz2 tar xf haskell-platform-2012.4.0.0.tar.gz tar xf ghc-7.4.2-x86_64-unknown-linux.tar.bz2 cd $HOME/applications/haskell/src/ghc-7.4.2/ ./configure --prefix=$HOME/applications/haskell/ghc-7.4.2 make install cd $HOME/applications/haskell/src/haskell-platform-2012.4.0.0/ PATH=$HOME/applications/haskell/ghc-7.4.2/bin:$PATH ./configure --prefix=$HOME/applications/haskell/haskell-platform make make install PATH=$HOME/applications/haskell/haskell-platform/bin:$HOME/.cabal/bin:$PATH cabal update PATH=$HOME/applications/haskell/haskell-platform/bin:$HOME/.cabal/bin:$PATH cabal install cabal-install PATH=$HOME/applications/haskell/haskell-platform/bin:$HOME/.cabal/bin:$PATH cabal install pandoc
インストールができたら、下記を .bash_profile などへ追加しておきます。
PATH=$HOME/applications/haskell/ghc-7.4.2/bin:$PATH PATH=$HOME/.cabal/bin:$PATH export $PATH