homebrew-core/Formula/resty.rb
Adam Vandenberg 05fe4ad0b6 resty 1.5
2011-03-20 11:41:33 -07:00

25 lines
584 B
Ruby

require 'formula'
class Resty < Formula
url 'https://github.com/micha/resty/tarball/1.5'
md5 '6e6f6f7fdc89f5eb7d4c316f42786016'
head 'git://github.com/micha/resty.git'
homepage 'https://github.com/micha/resty'
# Don't take +x off these files
skip_clean 'bin'
def install
system "mv README.md README"
bin.install %w[pp resty pypp]
end
def caveats; <<-EOS.undent
The Python printy-printer (pypp) uses the json module, available in
Python 2.6 and newer.
The Perl printy-printer (pp) depends on JSON from CPAN:
cpan JSON
EOS
end
end