Add formula for jq ( CLI json parser in C )
- http://stedolan.github.com/jq/

Closes Homebrew/homebrew#15590.

Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
This commit is contained in:
Suvash Thapaliya 2012-10-22 00:44:45 +02:00 committed by Misty De Meo
parent 56906407a2
commit 4269057da2

14
Formula/jq.rb Normal file
View file

@ -0,0 +1,14 @@
require 'formula'
class Jq < Formula
homepage 'http://stedolan.github.com/jq/'
url 'https://github.com/stedolan/jq/tarball/jq-1.1'
sha1 'a0b170faae0e79c2fcd3a9117ae109572cb9f443'
head 'https://github.com/stedolan/jq.git'
def install
system "make"
bin.install 'jq'
end
end