diff options
| author | Xu Cheng | 2014-12-28 22:35:36 +0800 |
|---|---|---|
| committer | Mike McQuaid | 2014-12-28 16:58:52 +0000 |
| commit | c337148273221915e7a04483d7ea209f7daa4533 (patch) | |
| tree | f948943107e47437631a828d2cebcd06f3cddd64 /Library/Formula/mpfr.rb | |
| parent | 605e19ff169867f974f64a898eaa0d7474114a83 (diff) | |
| download | homebrew-c337148273221915e7a04483d7ea209f7daa4533.tar.bz2 | |
mpfr: modernize
Diffstat (limited to 'Library/Formula/mpfr.rb')
| -rw-r--r-- | Library/Formula/mpfr.rb | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Library/Formula/mpfr.rb b/Library/Formula/mpfr.rb index 2610a37df..4fe6e3279 100644 --- a/Library/Formula/mpfr.rb +++ b/Library/Formula/mpfr.rb @@ -1,5 +1,3 @@ -require "formula" - class Mpfr < Formula homepage "http://www.mpfr.org/" # Upstream is down a lot, so use the GNU mirror + Gist for patches @@ -38,7 +36,7 @@ class Mpfr < Formula ENV.m32 if build.build_32_bit? system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}" system "make" - system "make check" - system "make install" + system "make", "check" + system "make", "install" end end |
