Skip to content

Instantly share code, notes, and snippets.

@jaymcgavren
Forked from felixbuenemann/ghc.rb
Last active April 9, 2019 17:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jaymcgavren/d523d5c831c4115f2d48bfb1b2640301 to your computer and use it in GitHub Desktop.
Save jaymcgavren/d523d5c831c4115f2d48bfb1b2640301 to your computer and use it in GitHub Desktop.
Homebrew formula for official ghc 8.6.4 binaries
class Ghc < Formula
desc "Glorious Glasgow Haskell Compilation System"
homepage "https://haskell.org/ghc/"
url "https://downloads.haskell.org/~ghc/8.6.4/ghc-8.6.4-x86_64-apple-darwin.tar.xz"
sha256 "cccb58f142fe41b601d73690809f6089f7715b6a50a09aa3d0104176ab4db09e"
def install
system "./configure", "--prefix=#{prefix}"
ENV.deparallelize { system "make", "install" }
end
test do
(testpath/"hello.hs").write('main = putStrLn "Hello Homebrew"')
system "runghc", testpath/"hello.hs"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment