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-22 11:22:35 +00:00
|
|
|
sha1 "ca80a2dd9e033c3c46f3a334fb851e9754e8e294" => :mavericks
|
|
|
|
sha1 "354257f5a6e0c79bd5c30dca7cd929965f1e3f43" => :mountain_lion
|
|
|
|
sha1 "27186c612aa426a3d8077a09a2be5ccab688f355" => :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
|