Changes between Version 14 and Version 15 of CabalInstall
- Timestamp:
- 08/21/08 13:50:51 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CabalInstall
v14 v15 66 66 67 67 {{{ 68 wget http://hackage.haskell.org/packages/archive/Cabal/1.4.0.1/Cabal-1.4.0.1.tar.gz 68 69 wget http://hackage.haskell.org/packages/archive/HTTP/3001.0.4/HTTP-3001.0.4.tar.gz 69 70 wget http://hackage.haskell.org/packages/archive/zlib/0.4.0.4/zlib-0.4.0.4.tar.gz 70 wget http://hackage.haskell.org/packages/archive/Cabal/1.4.0.1/Cabal-1.4.0.1.tar.gz71 71 wget http://hackage.haskell.org/packages/archive/cabal-install/0.5.1/cabal-install-0.5.1.tar.gz 72 tar -zxf Cabal-1.4.0.1.tar.gz 73 cd Cabal-1.4.0.1 74 ghc --make Setup 75 ./Setup configure --user && ./Setup build && ./Setup install 76 cd .. 72 77 tar -zxf HTTP-3001.0.4.tar.gz 73 78 cd HTTP-3001.0.4 74 ghc --make -o setup Setup.lhs 75 ./setup configure --user --prefix=$HOME/.cabal && ./setup build && ./setup install --user 79 runghc Setup configure --user && runghc Setup build && runghc Setup install 76 80 cd .. 77 81 tar -zxf zlib-0.4.0.4.tar.gz 78 82 cd zlib-0.4.0.4 79 ghc --make -o setup Setup.hs 80 ./setup configure --user --prefix=$HOME/.cabal && ./setup build && ./setup install --user 81 cd .. 82 tar -zxf Cabal-1.4.0.1.tar.gz 83 cd Cabal-1.4.0.1 84 ghc --make -o setup Setup.hs 85 ./setup configure --user --prefix=$HOME/.cabal && ./setup build && ./setup install --user 83 runghc Setup configure --user && runghc Setup build && runghc Setup install 86 84 cd .. 87 85 tar -zxf cabal-install-0.5.1.tar.gz 88 86 cd cabal-install-0.5.1 89 ghc --make -o setup Setup.hs 90 ./setup configure --user --prefix=$HOME/.cabal && ./setup build && ./setup install --user 87 runghc Setup configure --user && runghc Setup build && runghc Setup install 91 88 cd .. 92 89 }}} 93 90 94 You will now have the cabal binary in `$HOME/.cabal/bin` 91 You will now have the cabal binary in `$HOME/.cabal/bin`. You should also add this directory to your `$PATH`. 92 93 In cabal-install 0.5.2 you can symlink binaries into another directory, eg `$HOME/bin` so it will not be necessary to change the `$PATH`.
