homebrew-core/Formula/resty.rb

26 lines
584 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Resty < Formula
2011-04-01 20:05:13 +00:00
url 'https://github.com/micha/resty/tarball/1.6'
md5 '927eb6bab8a6f68c2e6557327077f1b4'
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
2011-03-20 18:41:33 +00:00
system "mv README.md README"
2010-04-07 05:41:51 +00:00
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