homebrew-core/Formula/ttytter.rb
Nik Reiman d2b5e8b3d7 ttytter: New URL for download location
Apparently they've changed webservers again.

Closes Homebrew/homebrew#7846.

Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2011-09-27 00:49:32 -07:00

23 lines
601 B
Ruby

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