blob: 8486162f7fa1c441e3c80eaa90263d812418b81f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
require 'formula'
class WCalc < Formula
url 'https://downloads.sourceforge.net/w-calc/wcalc-2.4.1.tar.bz2'
homepage 'http://w-calc.sourceforge.net'
sha1 'e3ba04dcfc60a47b60c79fc6f9f4a8fa750ee5f9'
depends_on 'gmp'
depends_on 'mpfr'
def install
system "./configure", "--prefix=#{prefix}"
system "make"
system "make", "install"
end
test do
system "#{bin}/wcalc 2+2"
end
end
|