Skip to content

Instantly share code, notes, and snippets.

@bassam
Last active December 19, 2015 06:29
Show Gist options
  • Save bassam/5911836 to your computer and use it in GitHub Desktop.
Save bassam/5911836 to your computer and use it in GitHub Desktop.
Symform's fork of mono-3-0
# http://www.mono-project.com/Compiling_Mono_on_OSX
require 'formula'
class SymformMono < Formula
homepage 'http://www.mono-project.com/'
head 'https://github.com/symform/mono.git', :using => :git, :branch => 'symform-3-0'
depends_on 'automake'
depends_on 'autoconf'
depends_on 'libtool'
def install
args = ["--prefix=#{prefix}",
"--with-glib=embedded",
"--enable-nls=no"]
args << "--host=x86_64-apple-darwin10" if MacOS.prefer_64_bit?
system "./autogen.sh", *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