aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/fsharp.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula/fsharp.rb')
-rw-r--r--Library/Formula/fsharp.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/Library/Formula/fsharp.rb b/Library/Formula/fsharp.rb
index 3eddf5ed8..1882cd03e 100644
--- a/Library/Formula/fsharp.rb
+++ b/Library/Formula/fsharp.rb
@@ -2,7 +2,7 @@ require "formula"
class Fsharp < Formula
homepage "http://fsharp.org/"
- url "https://github.com/fsharp/fsharp.git", :tag => "3.1.1.6"
+ url "https://github.com/fsharp/fsharp.git", :tag => "3.1.1.25"
bottle do
sha1 "df3f509b0d91c6341c4b082fca8a117686ec2fd4" => :mavericks
@@ -17,6 +17,9 @@ class Fsharp < Formula
def install
system "./autogen.sh", "--prefix=#{prefix}"
+ # make sure to find the fsharp assemblies even if the user has not set
+ # MONO_GAC_PREFIX to HOMEBREW_PREFIX
+ ENV["MONO_GAC_PREFIX"] = "#{HOMEBREW_PREFIX}"
system "make"
system "make", "install"
end