Skip to content

Instantly share code, notes, and snippets.

@atdt
Created October 21, 2012 18:48
Show Gist options
  • Save atdt/3928074 to your computer and use it in GitHub Desktop.
Save atdt/3928074 to your computer and use it in GitHub Desktop.
Jq formula for Homebrew
require 'formula'
class Jq < Formula
homepage 'http://stedolan.github.com/jq/'
url 'http://stedolan.github.com/jq/download/source/jq.tgz'
sha1 'b3dfaafd1bbe89f04a92036eade3475613078e0c'
version '32e1b114df'
def install
system "make"
bin.install "jq"
end
def test
system "#{bin}/jq --help"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment