2014-03-14 10:35:33 +00:00
|
|
|
require "formula"
|
|
|
|
|
|
|
|
class Mono < Formula
|
|
|
|
homepage "http://www.mono-project.com/"
|
|
|
|
url "http://download.mono-project.com/sources/mono/mono-3.2.8.tar.bz2"
|
|
|
|
sha1 "d58403caec82af414507cefa58ce74bbb792985a"
|
|
|
|
|
2014-03-24 15:13:58 +00:00
|
|
|
bottle do
|
|
|
|
sha1 "24b6d8979f74a645f6c9e479cd37c175f146f428" => :mavericks
|
|
|
|
sha1 "f64f94d411755ae039244bb47862c5f8196acf10" => :mountain_lion
|
|
|
|
sha1 "c2b73e639254287efc5a88ef9d07bf08d12b4d37" => :lion
|
|
|
|
end
|
|
|
|
|
2014-03-14 10:35:33 +00:00
|
|
|
resource "monolite" do
|
|
|
|
url "http://storage.bos.xamarin.com/mono-dist-master/latest/monolite-111-latest.tar.gz"
|
|
|
|
sha1 "7f6715b8e569b6e7ad85c207311f145f688b3cf5"
|
|
|
|
end
|
|
|
|
|
2014-03-28 00:37:20 +00:00
|
|
|
# help mono find its MonoPosixHelper lib when it is not in a system path
|
|
|
|
# see https://bugzilla.xamarin.com/show_bug.cgi?id=18555
|
|
|
|
patch do
|
|
|
|
url "https://bugzilla.xamarin.com/attachment.cgi?id=6399"
|
|
|
|
sha1 "d011dc55f341feea0bdb8aa645688b815910b734"
|
|
|
|
end
|
|
|
|
|
2014-03-14 10:35:33 +00:00
|
|
|
def install
|
|
|
|
# a working mono is required for the the build - monolite is enough
|
|
|
|
# for the job
|
|
|
|
(buildpath+"mcs/class/lib/monolite").install resource("monolite")
|
|
|
|
|
|
|
|
args = %W[
|
|
|
|
--prefix=#{prefix}
|
|
|
|
--enable-nls=no
|
|
|
|
]
|
|
|
|
args << "--build=" + (MacOS.prefer_64_bit? ? "x86_64": "i686") + "-apple-darwin"
|
|
|
|
|
|
|
|
system "./configure", *args
|
|
|
|
system "make"
|
|
|
|
system "make", "install"
|
|
|
|
# mono-gdb.py and mono-sgen-gdb.py are meant to be loaded by gdb, not to be
|
|
|
|
# run directly, so we move them out of bin
|
|
|
|
libexec.install bin/"mono-gdb.py", bin/"mono-sgen-gdb.py"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
test_str = "Hello Homebrew"
|
|
|
|
hello = (testpath/"hello.cs")
|
|
|
|
hello.write <<-EOS.undent
|
|
|
|
public class Hello1
|
|
|
|
{
|
|
|
|
public static void Main()
|
|
|
|
{
|
|
|
|
System.Console.WriteLine("#{test_str}");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
EOS
|
|
|
|
`#{bin}/mcs #{hello}`
|
|
|
|
assert $?.success?
|
|
|
|
output = `#{bin}/mono hello.exe`
|
|
|
|
assert $?.success?
|
|
|
|
assert_equal test_str, output.strip
|
|
|
|
end
|
|
|
|
|
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
To use the assemblies from other formulae you need to set:
|
|
|
|
export MONO_GAC_PREFIX="#{HOMEBREW_PREFIX}"
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|