aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/balance.rb
blob: 75f6de2b2976c9d131f42c13728977236a1dd5c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class Balance < Formula
  url 'http://www.inlab.de/balance-3.54.tar.gz'
  homepage 'http://www.inlab.de/balance.html'
  md5 '99854615cc58ceb2c5bbf29e35d18018'

  def install
    system "make"

    bin.install "balance"
    man1.install "balance.1"
  end
end