aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/jq.rb
blob: b59f6ae31fc29f9893f45625d88ae5049e38d175 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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