blob: 5bcfd667afc5138f8756411710cfe0e3e5de22e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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
|