Cabal-install runs a series of commands that use the env var
`VERBOSE` which has to be either unset or equal to `--verbose`.
Doing a `brew install -v cabal-install` sets `VERBOSE=1` and
breaks the build.
- Unset `VERBOSE`
FixesHomebrew/homebrew#12155ClosesHomebrew/homebrew#15485.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
The bash completion shipped with cabal-install package is now installed
to bash_completion.d directory.
ClosesHomebrew/homebrew#8261.
Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
The cabal-install package provides the cabal command-line tool which
simplifies the process of managing Haskell software by automating the
fetching, configuration, compilation and installation of Haskell libraries
and programs.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Cabal is a system for building and packaging Haskell libraries and
programs. It defines a common interface for package authors and
distributors to easily build their applications in a portable way.
cabal-install is the command line interface to Cabal and hackage. This
is the package that provides the 'cabal' command line program. To make
the process easier the cabal-install tarball contains a bootstrap.sh
script which downloads and installs all three dependencies.
http://www.haskell.org/cabal/
Signed-off-by: Adam Vandenberg <flangy@gmail.com>