bc8a3ee5ed
HEAD does not compile on Snow Leopard, but may work on newer versions of OS X Closes Homebrew/homebrew#23166.
21 lines
543 B
Ruby
21 lines
543 B
Ruby
require 'formula'
|
|
|
|
class Jq < Formula
|
|
homepage 'http://stedolan.github.io/jq/'
|
|
url 'http://stedolan.github.io/jq/download/source/jq-1.3.tar.gz'
|
|
sha1 'ac1f19e5d9921683af25251e97c2c4bfee895ca2'
|
|
|
|
head 'https://github.com/stedolan/jq.git'
|
|
|
|
depends_on 'autoconf' => :build if build.head?
|
|
depends_on 'automake' => :build if build.head?
|
|
depends_on 'bison' => :build if build.head?
|
|
|
|
def install
|
|
system "autoreconf -i" if build.head?
|
|
system "./configure"
|
|
system "make"
|
|
bin.install 'jq'
|
|
man1.install 'jq.1'
|
|
end
|
|
end
|