homebrew-core/Formula/mosml.rb
2012-08-31 23:45:10 -04:00

22 lines
538 B
Ruby

require 'formula'
class Mosml < Formula
version '2.01'
url 'http://www.itu.dk/people/sestoft/mosml/mos201src.tar.gz'
homepage 'http://www.itu.dk/people/sestoft/mosml.html'
md5 '74aaaf988201fe92a9dbfbcb1e646f70'
def install
cd "src"
inreplace "Makefile.inc" do |s|
s.change_make_var! 'MOSMLHOME', prefix
s.change_make_var! 'DOCDIR', doc
s.change_make_var! 'LIBDIR', lib+'mosml'
s.change_make_var! 'TOOLDIR', lib+'mosml'
end
system "make", "CPP=cpp"
system "make install"
end
end