blob: ea13b1db002489c383406d622bf19c3a5d3bed05 (
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 'http://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
|