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