2011-08-13 06:11:05 +00:00
|
|
|
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'
|
2011-08-13 06:11:05 +00:00
|
|
|
|
2013-10-03 08:55:52 +00:00
|
|
|
bottle do
|
2013-12-05 06:58:17 +00:00
|
|
|
cellar :any
|
2014-04-12 09:24:13 +00:00
|
|
|
sha1 "11f2d13b46dfefd8b3a237a921084449682b788e" => :mavericks
|
|
|
|
sha1 "d4b7dd4842b722926abc12b8730f31751763fa1c" => :mountain_lion
|
|
|
|
sha1 "f00f1ffdec0fa722f9aa3a363ac98a1462b4dad4" => :lion
|
2013-10-03 08:55:52 +00:00
|
|
|
end
|
|
|
|
|
2011-08-13 06:11:05 +00:00
|
|
|
depends_on 'ghc'
|
|
|
|
|
2013-05-28 19:24:50 +00:00
|
|
|
conflicts_with 'haskell-platform'
|
|
|
|
|
2011-08-13 06:11:05 +00:00
|
|
|
def install
|
2013-09-09 12:09:06 +00:00
|
|
|
# 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'
|
2013-09-09 12:09:06 +00:00
|
|
|
bin.install "bin/cabal"
|
2013-05-03 18:03:31 +00:00
|
|
|
bash_completion.install 'bash-completion/cabal'
|
2011-08-13 06:11:05 +00:00
|
|
|
end
|
2013-10-03 09:19:41 +00:00
|
|
|
|
|
|
|
test do
|
|
|
|
system "#{bin}/cabal", "--config-file=#{testpath}/config", 'info', 'cabal'
|
|
|
|
end
|
2011-08-13 06:11:05 +00:00
|
|
|
end
|