Skip to content

Instantly share code, notes, and snippets.

@vindir
Forked from MattesGroeger/mono.rb
Created May 14, 2014 14:41
Show Gist options
  • Save vindir/20e52d5cc2016ff2da0a to your computer and use it in GitHub Desktop.
Save vindir/20e52d5cc2016ff2da0a to your computer and use it in GitHub Desktop.
Brew formula for installing mono
# http://www.mono-project.com/Compiling_Mono_on_OSX
require 'formula'
class Mono < Formula
url 'http://download.mono-project.com/sources/mono/mono-3.2.3.tar.bz2'
homepage 'http://www.mono-project.com/'
sha1 'e356280ae45beaac6476824d551b094cd12e03b9'
def install
args = ["--prefix=#{prefix}",
"--with-glib=embedded",
"--enable-nls=no"]
args << "--host=x86_64-apple-darwin10" if MacOS.prefer_64_bit?
system "./configure", *args
system "make"
system "make install"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment