diff options
| -rw-r--r-- | Library/Formula/check.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Library/Formula/check.rb b/Library/Formula/check.rb index bd8573c47..fab0c4dea 100644 --- a/Library/Formula/check.rb +++ b/Library/Formula/check.rb @@ -5,7 +5,12 @@ class Check <Formula homepage 'http://check.sourceforge.net/' md5 '5d75e9a6027cde79d2c339ef261e7470' + def options + [["--universal", "Build a universal binary."]] + end + def install + ENV.universal_binary if ARGV.include? "--universal" system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}" system "make install" |
