aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cadubi.rb
blob: a404744118befc44fee4dffe74592dc2952650af (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://langworth.com/pub/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