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

class Jq < Formula
  homepage 'http://stedolan.github.io/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