class Mono < Formula desc "Cross platform, open source .NET development framework" homepage "http://www.mono-project.com/" url "https://download.mono-project.com/sources/mono/mono-5.0.1.1.tar.bz2" sha256 "48d6ae71d593cd01bf0f499de569359d45856cda325575e1bacb5fabaa7e9718" bottle do sha256 "ae35573df33c718c3d9999572392480d2426cc995cfc4b123f0a66f885ea8053" => :high_sierra sha256 "8dab2660d98e8e3bb1fa7f4640db04ef33e4e7fcfb7c3ef8a5c718e5254d80bd" => :sierra sha256 "89d4d7f5df7bbf0e61a24e042bac29c41433dd71e8008394ce181ef6e7a4b77f" => :el_capitan sha256 "72dd883ab2c394bde73325086350545db1a0a0414989fb28b9a31b7b8217c7a7" => :yosemite end # xbuild requires the .exe files inside the runtime directories to # be executable skip_clean "lib/mono" link_overwrite "bin/fsharpi" link_overwrite "bin/fsharpiAnyCpu" link_overwrite "bin/fsharpc" link_overwrite "bin/fssrgen" link_overwrite "lib/mono" link_overwrite "lib/cli" option "without-fsharp", "Build without support for the F# language." depends_on "automake" => :build depends_on "autoconf" => :build depends_on "pkg-config" => :build depends_on "cmake" => :build conflicts_with "xsd", :because => "both install `xsd` binaries" resource "fsharp" do url "https://github.com/fsharp/fsharp.git", :tag => "4.1.18", :revision => "3245fd24efcc7a54d4314a2897257f68cd194244" end def install args = %W[ --prefix=#{prefix} --disable-dependency-tracking --disable-silent-rules --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" # Now build and install fsharp as well if build.with? "fsharp" resource("fsharp").stage do ENV.prepend_path "PATH", bin ENV.prepend_path "PKG_CONFIG_PATH", lib/"pkgconfig" system "./autogen.sh", "--prefix=#{prefix}" system "make" system "make", "install" end end end def caveats; <<~EOS To use the assemblies from other formulae you need to set: export MONO_GAC_PREFIX="#{HOMEBREW_PREFIX}" Note that the 'mono' formula now includes F#. If you have the 'fsharp' formula installed, remove it with 'brew uninstall fsharp'. EOS end test do test_str = "Hello Homebrew" test_name = "hello.cs" (testpath/test_name).write <<~EOS public class Hello1 { public static void Main() { System.Console.WriteLine("#{test_str}"); } } EOS shell_output("#{bin}/mcs #{test_name}") output = shell_output("#{bin}/mono hello.exe") assert_match test_str, output.strip # Tests that xbuild is able to execute lib/mono/*/mcs.exe (testpath/"test.csproj").write <<~EOS HomebrewMonoTest v4.5 EOS system bin/"xbuild", "test.csproj" if build.with? "fsharp" # Test that fsharpi is working ENV.prepend_path "PATH", bin (testpath/"test.fsx").write <<~EOS printfn "#{test_str}"; 0 EOS output = pipe_output("#{bin}/fsharpi test.fsx") assert_match test_str, output # Tests that xbuild is able to execute fsc.exe (testpath/"test.fsproj").write <<~EOS 8.0.30703 2.0 {B6AB4EF3-8F60-41A1-AB0C-851A6DEB169E} Exe $(MSBuildExtensionsPath32)\\Microsoft\\VisualStudio\\v$(VisualStudioVersion)\\FSharp\\Microsoft.FSharp.Targets EOS (testpath/"Main.fs").write <<~EOS [] let main _ = printfn "#{test_str}"; 0 EOS system bin/"xbuild", "test.fsproj" end end end