aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/jshon.rb
blob: 6308397a05b2f18cc8d4d56d07d765ccd5eb287d (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

  def test
    system "echo '[true,false,null]'| #{bin}/jshon -l"
  end
end