blob: 3eb3566aa1e1ff9396c3c8ed74b60d6da8765bd8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
  | 
require 'formula'
class Jq < Formula
  homepage 'http://stedolan.github.io/jq/'
  url 'http://stedolan.github.io/jq/download/source/jq-1.4.tar.gz'
  sha1 '71da3840839ec74ae65241e182ccd46f6251c43e'
  depends_on 'bison' => :build # jq depends on bison > 2.5
  head do
    url 'https://github.com/stedolan/jq.git'
    depends_on 'oniguruma'
    depends_on 'autoconf' => :build
    depends_on 'automake' => :build
    depends_on 'libtool' => :build
  end
  def install
    system "autoreconf", "-iv" if build.head?
    system "./configure", "--disable-dependency-tracking",
                          "--disable-silent-rules",
                          "--prefix=#{prefix}"
    system "make", "install"
  end
  test do
    IO.popen("#{bin}/jq .bar", "w+") do |pipe|
      pipe.puts '{"foo":1, "bar":2}'
      pipe.close_write
      assert_equal "2\n", pipe.read
    end
  end
end
  |