aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/jq.rb
blob: eba8b2994d563216b23e000a7b4ccad4ed3c5e1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class Jq < Formula
  homepage 'http://stedolan.github.com/jq/'
  url 'https://github.com/stedolan/jq/archive/jq-1.1.tar.gz'
  sha1 '555c9b2d9852376092be556bc0649154d5b5c2bf'
  head 'https://github.com/stedolan/jq.git'

  def install
    system "make"
    bin.install 'jq'
  end
end