21 lines
379 B
Ruby
21 lines
379 B
Ruby
|
require 'formula'
|
||
|
|
||
|
class Jshon < Formula
|
||
|
url 'http://kmkeen.com/jshon/jshon.tar.gz'
|
||
|
homepage 'http://kmkeen.com/jshon/'
|
||
|
sha1 'db7ec186d48b2e1937f7b5fbb8dfda298997b32c'
|
||
|
version '8'
|
||
|
|
||
|
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
|