Changeset 20946 for INSTALL

Show
Ignore:
Timestamp:
06/22/08 12:43:53 (5 months ago)
Author:
masak
Message:

* removed pugs-ghc681.diff
* added instructions to INSTALL for building Pugs via Cabal

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • INSTALL

    r20926 r20946  
    242242  ./pugs -CParse-YAML ext/Test/lib/Test.pm > blib6/lib/Test.pm.yml 
    243243  pugs: user error (Not implemented: asYAML "Sub") 
     244 
     245INSTALLING PUGS VIA CABAL 
     246------------------------- 
     247 
     248It's now possible to download and install Pugs using cabal-install. Follow 
     249these steps: 
     250 
     2511. Make sure you have Cabal, cabal-install, HTTP and zlib installed. 
     252 
     253 <http://www.haskell.org/cabal/download.html> 
     254 <http://hackage.haskell.org/cgi-bin/hackage-scripts/package/HTTP> 
     255 <http://hackage.haskell.org/cgi-bin/hackage-scripts/package/zlib> 
     256 
     257(If you're unsure how to install this, the instructions contained in the README 
     258file of Cabal will help you get started. Those instructions work for all the 
     259above packages.) 
     260 
     2612. Type the following commands. 
     262 
     263$ cabal update 
     264$ cabal install pugs-compat 
     265$ cabal install Pugs 
     266 
     267...and you're done.