diff options
| author | Dan Weeks | 2012-04-09 11:39:23 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2012-04-10 06:18:07 -0700 |
| commit | 8ccee5edbe5a795529e64ded7045301646136c81 (patch) | |
| tree | b8e949ec8604c43506a6df6f9411e4cb17df8d75 /Library | |
| parent | cd8012f74d3b8c9bf5d590dc1d432a4e1c747da4 (diff) | |
| download | homebrew-8ccee5edbe5a795529e64ded7045301646136c81.tar.bz2 | |
jansson 2.3
Also enable universal builds
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/jansson.rb | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Library/Formula/jansson.rb b/Library/Formula/jansson.rb index 150c4d968..b100b391c 100644 --- a/Library/Formula/jansson.rb +++ b/Library/Formula/jansson.rb @@ -1,11 +1,16 @@ require 'formula' class Jansson < Formula - url 'http://www.digip.org/jansson/releases/jansson-2.1.tar.gz' + url 'http://www.digip.org/jansson/releases/jansson-2.3.tar.gz' homepage 'http://www.digip.org/jansson/' - md5 '9d9cff669b79cecc60d68141afd74e9d' + md5 '17d92cb6200cc06d8403134cb37ad2b8' + + def options + [["--universal", "Build a universal binary."]] + end def install + ENV.universal_binary if ARGV.build_universal? system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}" system "make install" |
