homebrew-core/Formula/jq.rb
Michael Hood 9517da4a73 jq 1.3
Closes Homebrew/homebrew#20017.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-05-23 09:31:16 -07:00

15 lines
332 B
Ruby

require 'formula'
class Jq < Formula
homepage 'http://stedolan.github.io/jq/'
url 'http://stedolan.github.io/jq/download/source/jq-1.3.tar.gz'
sha1 'ac1f19e5d9921683af25251e97c2c4bfee895ca2'
head 'https://github.com/stedolan/jq.git'
def install
system "./configure"
system "make"
bin.install 'jq'
end
end