From d3a8ff78ad1ab026244faf14f8e1000ea4c7c4a1 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Tue, 29 Jul 2014 10:05:14 +0200 Subject: [PATCH] haskell-platform: use double-quotes. --- Formula/haskell-platform.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/haskell-platform.rb b/Formula/haskell-platform.rb index c9d993d7b9..6e12cc8292 100644 --- a/Formula/haskell-platform.rb +++ b/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