Closes Homebrew/homebrew#20017.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Michael Hood 2013-05-23 10:29:36 -06:00 committed by Adam Vandenberg
parent 3dbf389fad
commit 9517da4a73

View file

@ -2,14 +2,13 @@ require 'formula'
class Jq < Formula
homepage 'http://stedolan.github.io/jq/'
url 'https://github.com/stedolan/jq/archive/jq-1.2.tar.gz'
sha1 'cdc57153a8105d9918cb84dff183cca8aa36f6de'
url 'http://stedolan.github.io/jq/download/source/jq-1.3.tar.gz'
sha1 'ac1f19e5d9921683af25251e97c2c4bfee895ca2'
head 'https://github.com/stedolan/jq.git'
depends_on 'bison'
def install
system "./configure"
system "make"
bin.install 'jq'
end