blob: 79f585b7c9cb5089ccdd5a2eb68c36d0766d9fc1 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
 | class WCalc < Formula
  url "https://downloads.sourceforge.net/w-calc/wcalc-2.5.tar.bz2"
  bottle do
    cellar :any
    sha1 "dcd1bc693b7536d7f7707e82de4214a7327d9af3" => :yosemite
    sha1 "53a6091c244cc590eba9d8f68e12d0821fbd604b" => :mavericks
    sha1 "b8494cd0a26356c9a0f4307057978cd231499541" => :mountain_lion
  end
  homepage "http://w-calc.sourceforge.net"
  sha256 "0e2c17c20f935328dcdc6cb4c06250a6732f9ee78adf7a55c01133960d6d28ee"
  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
 |