Changes between Version 42 and Version 43 of CabalInstall
- Timestamp:
- 04/16/12 07:47:09 (13 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CabalInstall
v42 v43 36 36 37 37 {{{ 38 Usage: cabal [GLOBAL FLAGS] 39 or: cabal COMMAND [FLAGS] 38 This program is the command line interface to the Haskell Cabal infrastructure. 39 See http://www.haskell.org/cabal/ for more information. 40 41 Usage: cabal COMMAND [FLAGS] 42 or: cabal [GLOBAL FLAGS] 40 43 41 44 Global flags: … … 46 49 Commands: 47 50 install Installs a list of packages. 48 list List available packages on the server (cached).49 51 update Updates list of known packages 50 fetch Downloads packages for later installation or study. 52 list List packages matching a search string. 53 info Display detailed information about a particular package. 54 fetch Downloads packages for later installation. 55 unpack Unpacks packages for user inspection. 56 check Check the package for common mistakes 57 sdist Generate a source distribution file (.tar.gz). 51 58 upload Uploads source packages to Hackage 59 report Upload build reports to a remote server. 60 init Interactively create a .cabal file. 52 61 configure Prepare to build the package. 53 62 build Make this package ready for installation. … … 55 64 haddock Generate Haddock HTML documentation. 56 65 clean Clean up after a build. 57 sdist Generate a source distribution file (.tar.gz).58 66 hscolour Generate HsColour colourised code, in HTML format. 59 67 register Register this package with the compiler. 60 68 test Run the test suite, if any (configure with UserHooks). 69 bench Run the benchmark, if any (configure with UserHooks). 70 upgrade (command disabled, use install instead) 71 help Help about commands 61 72 62 Typical step for installing Cabal packages: 63 cabal install [PACKAGES] 73 For more information about a command use: 74 cabal COMMAND --help 75 76 To install Cabal packages from hackage use: 77 cabal install foo [--dry-run] 64 78 65 79 Occasionally you need to update the list of available packages: 66 80 cabal update 67 81 68 For more information about a command, try 'cabal COMMAND --help'. 69 This program is the command line interface to the Haskell Cabal Infrastructure. 70 See http://www.haskell.org/cabal/ for more information. 82 You can edit the cabal configuration file to set defaults: 83 $HOME/.cabal/config 71 84 }}} 72 85 73 86 See the [http://www.haskell.org/cabal/ cabal page] for more complete usage information. 74 87 88 {{{ 89 #!comment 75 90 There is bash command line completion support available, though currently that requires installing manually. 91 }}} 76 92 77 93 == Quick Installation on Unix ==
