4269057da2
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>
14 lines
295 B
Ruby
14 lines
295 B
Ruby
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
|