blob: 21ea88b7a4db3290a937f0709dc200b55a74f41b (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
 | require 'formula'
class Balance < Formula
  homepage 'http://www.inlab.de/balance.html'
  url 'http://www.inlab.de/balance-3.56.tar.gz'
  sha1 '04067301a9eda42659e88c3a9438bc1bf8a96902'
  def install
    system "make"
    bin.install "balance"
    man1.install "balance.1"
  end
end
 |