2010-12-07 19:46:19 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Mosml < Formula
|
2010-12-07 19:46:19 +00:00
|
|
|
version '2.01'
|
|
|
|
url 'http://www.itu.dk/people/sestoft/mosml/mos201src.tar.gz'
|
|
|
|
homepage 'http://www.itu.dk/people/sestoft/mosml.html'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 'eba58486b10f0359fafba488fa1bf366b2aabf8a'
|
2010-12-07 19:46:19 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2012-09-01 03:43:18 +00:00
|
|
|
system "make", "CPP=cpp"
|
2010-12-07 19:46:19 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
2011-03-10 05:11:03 +00:00
|
|
|
end
|