homebrew-core/Formula/ttytter.rb
Tobias Steinhoff 31e3f47a24 update to 1.1.7
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-11-04 07:44:57 -07:00

21 lines
598 B
Ruby

require 'formula'
class Ttytter <ScriptFileFormula
url 'http://www.floodgap.com/software/ttytter/dist1/1.1.07.txt'
homepage 'http://www.floodgap.com/software/ttytter/'
md5 '9fcd4ac9744af57d48e9e730745d47ba'
def install
bin.install '1.1.07.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