diff options
| author | Mike McQuaid | 2014-07-29 10:05:14 +0200 |
|---|---|---|
| committer | Mike McQuaid | 2014-07-29 13:39:58 +0200 |
| commit | 70ea0fba40c76bc02bf3b58932dd071608cd3e54 (patch) | |
| tree | a58ef24edb42905cbe998edd837388ee32f2e116 /Library/Formula | |
| parent | 31fd4c7673c7eb86e3be86066cc12aa0ba5e44e1 (diff) | |
| download | homebrew-70ea0fba40c76bc02bf3b58932dd071608cd3e54.tar.bz2 | |
haskell-platform: use double-quotes.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/haskell-platform.rb | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Library/Formula/haskell-platform.rb b/Library/Formula/haskell-platform.rb index c9d993d7b..6e12cc829 100644 --- a/Library/Formula/haskell-platform.rb +++ b/Library/Formula/haskell-platform.rb @@ -1,19 +1,19 @@ -require 'formula' +require "formula" class HaskellPlatform < Formula - homepage 'http://hackage.haskell.org/platform/' - url 'http://lambda.haskell.org/platform/download/2013.2.0.0/haskell-platform-2013.2.0.0.tar.gz' - sha1 '8669bb5add1826c0523fb130c095fb8bf23a30ce' + homepage "http://hackage.haskell.org/platform/" + url "http://lambda.haskell.org/platform/download/2013.2.0.0/haskell-platform-2013.2.0.0.tar.gz" + sha1 "8669bb5add1826c0523fb130c095fb8bf23a30ce" revision 1 - depends_on 'ghc' + depends_on "ghc" - conflicts_with 'cabal-install' + conflicts_with "cabal-install" def install # libdir doesn't work if passed to configure, needs to be set in the environment system "./configure", "--prefix=#{prefix}" - ENV['EXTRA_CONFIGURE_OPTS'] = "--libdir=#{lib}/ghc" + ENV["EXTRA_CONFIGURE_OPTS"] = "--libdir=#{lib}/ghc" system "make install" end |
