homebrew-core/Formula/jq.rb
Robson Roberto Souza Peixoto e8dac7f142 JQ 1.2
Closes Homebrew/homebrew#16788.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-02-10 11:43:01 -08:00

16 lines
324 B
Ruby

require 'formula'
class Jq < Formula
homepage 'http://stedolan.github.com/jq/'
url 'https://github.com/stedolan/jq/archive/jq-1.2.tar.gz'
sha1 'cdc57153a8105d9918cb84dff183cca8aa36f6de'
head 'https://github.com/stedolan/jq.git'
depends_on 'bison'
def install
system "make"
bin.install 'jq'
end
end