diff options
| -rw-r--r-- | Library/Formula/jsonpp.rb | 11 | 
1 files changed, 11 insertions, 0 deletions
| diff --git a/Library/Formula/jsonpp.rb b/Library/Formula/jsonpp.rb new file mode 100644 index 000000000..4e7c2b487 --- /dev/null +++ b/Library/Formula/jsonpp.rb @@ -0,0 +1,11 @@ +require 'formula' + +class Jsonpp < Formula +  url 'http://cloud.github.com/downloads/jmhodges/jsonpp/jsonpp-1.0.0-osx-x86_64.zip' +  homepage 'http://jmhodges.github.com/jsonpp/' +  md5 '2cd5faf6f11466b587a4ab744de13a16' + +  def install +    bin.install 'jsonpp' +  end +end | 
