Skip to content

Instantly share code, notes, and snippets.

@dylanvee
Created December 4, 2011 07:14
Show Gist options
  • Save dylanvee/1429495 to your computer and use it in GitHub Desktop.
Save dylanvee/1429495 to your computer and use it in GitHub Desktop.
mz-scheme 372
require 'formula'
class MzScheme < Formula
url 'http://download.plt-scheme.org/bundles/372/mz/mz-372-src-unix.tgz'
homepage 'http://plt-scheme.org/'
md5 'c755f4ba7191636c5eb587745e4c6a67'
version '4.2.5'
fails_with_llvm "Unsupported inline asm", :build => 2335
def install
cd "src"
args = ["--disable-debug", "--disable-dependency-tracking",
"--disable-pthread", "--disable-mred", "--enable-xonx",
"--prefix=#{prefix}"]
args << "--enable-mac64" if MacOS.prefer_64_bit?
system "./configure", *args
system "make"
system "make install"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment