Last active
December 19, 2015 06:29
-
-
Save bassam/5911836 to your computer and use it in GitHub Desktop.
Symform's fork of mono-3-0
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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