aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ttytter.rb
blob: abe80ff268718ada586311e358fe9eadb27e62b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'formula'

class Ttytter <ScriptFileFormula
  url 'http://www.floodgap.com/software/ttytter/dist1/1.1.08.txt'
  homepage 'http://www.floodgap.com/software/ttytter/'
  md5 '69d158676c0324a4cb86ac6698185053'

  def install
    bin.install '1.1.08.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