Skip to content

Instantly share code, notes, and snippets.

@shtirlic
Last active December 14, 2015 11:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shtirlic/5078054 to your computer and use it in GitHub Desktop.
Save shtirlic/5078054 to your computer and use it in GitHub Desktop.
# http://www.mono-project.com/Compiling_Mono_on_OSX
require 'formula'
class MonoBasic < Formula
url 'http://download.mono-project.com/sources/mono-basic/mono-basic-2.10.tar.bz2'
homepage 'http://www.mono-project.com/'
def install
args = ["--prefix=#{prefix}"]
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