Skip to content

Commit

Permalink
texapp 0.6.00
Browse files Browse the repository at this point in the history
Closes Homebrew#21973.

Signed-off-by: Adam Vandenberg <[email protected]>
  • Loading branch information
brycied00d authored and adamv committed Aug 30, 2013
1 parent 647e687 commit 096f024
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions Library/Formula/texapp.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
require 'formula'

class Texapp < Formula
homepage 'http://www.floodgap.com/software/texapp/'
url 'http://www.floodgap.com/software/texapp/dist0/0.6.00.txt'
sha1 'b9f07560d1182d6d35064ef25a6a3da7362d563c'

def install
bin.install "#{version}.txt" => "texapp"
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

0 comments on commit 096f024

Please sign in to comment.