haskell-platform: use double-quotes.

master
Mike McQuaid 2014-07-29 10:05:14 +02:00
parent a419a40010
commit d3a8ff78ad
1 changed files with 7 additions and 7 deletions

View File

@ -1,19 +1,19 @@
require 'formula' require "formula"
class HaskellPlatform < Formula class HaskellPlatform < Formula
homepage 'http://hackage.haskell.org/platform/' 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' url "http://lambda.haskell.org/platform/download/2013.2.0.0/haskell-platform-2013.2.0.0.tar.gz"
sha1 '8669bb5add1826c0523fb130c095fb8bf23a30ce' sha1 "8669bb5add1826c0523fb130c095fb8bf23a30ce"
revision 1 revision 1
depends_on 'ghc' depends_on "ghc"
conflicts_with 'cabal-install' conflicts_with "cabal-install"
def install def install
# libdir doesn't work if passed to configure, needs to be set in the environment # libdir doesn't work if passed to configure, needs to be set in the environment
system "./configure", "--prefix=#{prefix}" system "./configure", "--prefix=#{prefix}"
ENV['EXTRA_CONFIGURE_OPTS'] = "--libdir=#{lib}/ghc" ENV["EXTRA_CONFIGURE_OPTS"] = "--libdir=#{lib}/ghc"
system "make install" system "make install"
end end