Formula for Scheme 48.

master
Drew Hess 2009-12-04 18:52:33 -08:00 committed by Max Howell
parent 081bb11d3f
commit 84edc0d513
1 changed files with 14 additions and 0 deletions

14
Formula/scheme48.rb Normal file
View File

@ -0,0 +1,14 @@
require 'formula'
class Scheme48 <Formula
url 'http://groups.csail.mit.edu/mac/projects/s48/1.8/scheme48-1.8.tgz'
homepage 'http://groups.csail.mit.edu/mac/projects/s48/'
md5 'f1c0a515039d4df4e07721f21940ad6d'
def install
ENV.deparallelize
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--enable-gc=bibop"
system "make"
system "make install"
end
end