e6aff5cb8c
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
15 lines
364 B
Ruby
15 lines
364 B
Ruby
require 'formula'
|
|
|
|
class Cadubi < Formula
|
|
homepage 'http://langworth.com/pub/cadubi/'
|
|
url 'http://pub.langworth.com/cadubi-1.3.tar.gz'
|
|
sha1 '3071b6ce1fce911f37eae3e01bef932d3cfb11d8'
|
|
|
|
depends_on 'Term::ReadKey' => :perl
|
|
|
|
def install
|
|
inreplace 'cadubi', '$Bin/help.txt', "#{doc}/help.txt"
|
|
bin.install 'cadubi'
|
|
doc.install 'help.txt'
|
|
end
|
|
end
|