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 "11f2d13b46dfefd8b3a237a921084449682b788e" => :mavericks
sha1 "d4b7dd4842b722926abc12b8730f31751763fa1c" => :mountain_lion
sha1 "f00f1ffdec0fa722f9aa3a363ac98a1462b4dad4" => :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