homebrew-core/Formula/cabal-install.rb

37 lines
1.1 KiB
Ruby
Raw Normal View History

require 'formula'
class CabalInstall < Formula
homepage 'http://www.haskell.org/haskellwiki/Cabal-Install'
2014-04-21 21:15:48 +00:00
url 'http://hackage.haskell.org/package/cabal-install-1.20.0.0/cabal-install-1.20.0.0.tar.gz'
sha1 '87eb4efe541475956a23e712d2aeb1c603f1d418'
2013-10-03 08:55:52 +00:00
bottle do
cellar :any
sha1 "ca80a2dd9e033c3c46f3a334fb851e9754e8e294" => :mavericks
sha1 "354257f5a6e0c79bd5c30dca7cd929965f1e3f43" => :mountain_lion
sha1 "27186c612aa426a3d8077a09a2be5ccab688f355" => :lion
2013-10-03 08:55:52 +00:00
end
depends_on 'ghc'
2013-05-28 19:24:50 +00:00
conflicts_with 'haskell-platform'
def install
# use a temporary package database instead of ~/.cabal or ~/.ghc
pkg_db = "#{Dir.pwd}/package.conf.d"
system 'ghc-pkg', 'init', pkg_db
ENV['EXTRA_CONFIGURE_OPTS'] = "--package-db=#{pkg_db}"
ENV['PREFIX'] = Dir.pwd
inreplace 'bootstrap.sh', 'list --global',
'list --global --no-user-package-db'
2013-05-28 19:24:50 +00:00
system 'sh', 'bootstrap.sh'
bin.install "bin/cabal"
2013-05-03 18:03:31 +00:00
bash_completion.install 'bash-completion/cabal'
end
2013-10-03 09:19:41 +00:00
test do
system "#{bin}/cabal", "--config-file=#{testpath}/config", 'info', 'cabal'
end
end