diff options
| author | Mike McQuaid | 2015-02-18 14:07:57 +0000 |
|---|---|---|
| committer | Mike McQuaid | 2015-02-18 14:07:57 +0000 |
| commit | 1ba592cfbfcd538c1a61ce5c766469772bcb13a8 (patch) | |
| tree | 708d5c3e11e0774e82ea076c76fb56d1cef6b90e /Library | |
| parent | 4d0552e3f9168ba3592ce605a0b78f50718a9ff1 (diff) | |
| download | homebrew-1ba592cfbfcd538c1a61ce5c766469772bcb13a8.tar.bz2 | |
jq: fix audit --strict.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/jq.rb | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/Library/Formula/jq.rb b/Library/Formula/jq.rb index b23add408..dde667a75 100644 --- a/Library/Formula/jq.rb +++ b/Library/Formula/jq.rb @@ -1,9 +1,7 @@ -require 'formula' - class Jq < Formula - homepage 'http://stedolan.github.io/jq/' - url 'http://stedolan.github.io/jq/download/source/jq-1.4.tar.gz' - sha1 '71da3840839ec74ae65241e182ccd46f6251c43e' + homepage "https://stedolan.github.io/jq/" + url "http://stedolan.github.io/jq/download/source/jq-1.4.tar.gz" + sha1 "71da3840839ec74ae65241e182ccd46f6251c43e" bottle do cellar :any @@ -12,15 +10,15 @@ class Jq < Formula sha1 "4c33838662ed6f806ac21db87d433c8722f488a4" => :mountain_lion end - depends_on 'bison' => :build # jq depends on bison > 2.5 + depends_on "bison" => :build # jq depends on bison > 2.5 head do - url 'https://github.com/stedolan/jq.git' + url "https://github.com/stedolan/jq.git" - depends_on 'oniguruma' - depends_on 'autoconf' => :build - depends_on 'automake' => :build - depends_on 'libtool' => :build + depends_on "oniguruma" + depends_on "autoconf" => :build + depends_on "automake" => :build + depends_on "libtool" => :build end def install |
