homebrew-core/Formula/ttytter.rb
Tobias Steinhoff d59783f917 TTYtter 1.1.12
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-06-12 16:14:49 -07:00

23 lines
601 B
Ruby

require 'formula'
class Ttytter < ScriptFileFormula
url 'http://www.floodgap.com/software/ttytter/dist1/1.1.12.txt'
homepage 'http://www.floodgap.com/software/ttytter/'
md5 '43385b93f42ae8892eff0ddc99903898'
def install
bin.install '1.1.12.txt' => 'ttytter'
end
def caveats; <<-EOS.undent
To take full advantage of readline features you must install readline:
brew install readline
and the Perl Module Term::ReadLine::TTYtter
cpan -i Term::ReadLine::TTYtter
Or if you have cpanminus:
cpanm Term::ReadLine::TTYtter
EOS
end
end