aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/jshon.rb
blob: b360c66c06f79a9c6931d8413f4f285cfa5cc6da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 'formula'

class Jshon < Formula
  homepage 'http://kmkeen.com/jshon/'
  url 'http://kmkeen.com/jshon/jshon.tar.gz'
  version '8'
  sha1 'e8d710f621ed42ab126c921f87bc8906af16cd1d'

  depends_on 'jansson'

  def install
    system 'make'
    bin.install 'jshon'
    man1.install 'jshon.1'
  end

  test do
    assert_equal "3", pipe_output("#{bin}/jshon -l", "[true,false,null]").strip
  end
end