xmonadをインストールしようとしています。まず、次のコマンドを使用して ghc コンパイラをインストールします。
zypper ar http://download.opensuse.org/repositories/devel:/languages:/haskell/openSUSE_12.1/devel:languages:haskell.repo
zypper in ghc
その後、次のコマンドを使用して cabal-install-0.14.0 のインストールを試みます。
wget http://hackage.haskell.org/packages/archive/cabal-install/0.14.0/cabal-install-0.14.0.tar.gz
tar zxfv cabal-install-0.10.2.tar.gz
cd cabal-install-0.10.2
sh bootstrap.sh
しかし、最後のコマンドを実行すると、次のエラーが発生しました。
Setup: The program hsc2hs is required but it could not be found
Error during cabal-install bootstrap:
Building the network package failed.
明らかに、hsc2hs プログラムが必要で、ディレクトリ "/usr/lib/ghc-7.4.2/hsc2hs" で確認できるので、このディレクトリを PATH に追加します。しかし、それでもうまくいきません。
アドバイスをくれる人はいますか?ありがとう。
PS: 私の OS は openSUSE 12.1 です。