2011-08-13 06:11:05 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class CabalInstall < Formula
|
|
|
|
homepage 'http://www.haskell.org/haskellwiki/Cabal-Install'
|
2012-04-26 21:05:34 +00:00
|
|
|
url 'http://www.haskell.org/cabal/release/cabal-install-0.14.0/cabal-install-0.14.0.tar.gz'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '614a683ec15a8d9b77e8d926c6906e8d00e3d401'
|
2011-08-13 06:11:05 +00:00
|
|
|
|
|
|
|
depends_on 'ghc'
|
|
|
|
|
|
|
|
def install
|
|
|
|
ENV['PREFIX'] = "#{prefix}"
|
|
|
|
system "sh bootstrap.sh"
|
2011-10-24 09:11:58 +00:00
|
|
|
|
2012-02-10 06:38:17 +00:00
|
|
|
(prefix+'etc/bash_completion.d').install 'bash-completion/cabal'
|
2011-08-13 06:11:05 +00:00
|
|
|
end
|
|
|
|
end
|