diff options
| author | Mike McQuaid | 2014-12-27 16:08:38 +0000 |
|---|---|---|
| committer | Mike McQuaid | 2014-12-27 16:31:46 +0000 |
| commit | b5c42b1a37f3cc9195290bb904ff27d1a7bc0992 (patch) | |
| tree | 8a74b61c172ba1e843994f80f3c4c27ef4dac4e0 /Library | |
| parent | eb7c4db340d0b768aa7caf9031a719b77a381bcd (diff) | |
| download | homebrew-b5c42b1a37f3cc9195290bb904ff27d1a7bc0992.tar.bz2 | |
jansson: fix some strict audit failures.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/jansson.rb | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/Library/Formula/jansson.rb b/Library/Formula/jansson.rb index 179c3e218..1db3bee06 100644 --- a/Library/Formula/jansson.rb +++ b/Library/Formula/jansson.rb @@ -1,9 +1,7 @@ -require 'formula' - class Jansson < Formula - homepage 'http://www.digip.org/jansson/' - url 'http://www.digip.org/jansson/releases/jansson-2.7.tar.gz' - sha1 '7d8686d84fd46c7c28d70bf2d5e8961bc002845e' + homepage "http://www.digip.org/jansson/" + url "http://www.digip.org/jansson/releases/jansson-2.7.tar.gz" + sha1 "7d8686d84fd46c7c28d70bf2d5e8961bc002845e" bottle do cellar :any @@ -18,6 +16,6 @@ class Jansson < Formula ENV.universal_binary if build.universal? system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}" - system "make install" + system "make", "install" end end |
