aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/haskell-platform.rb14
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