blob: 8a9a3e24149ca2be92da27b5fad8f05b1ab601cb (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 | require "formula"
class LibpokerEval < Formula
  homepage "http://pokersource.sourceforge.net"
  url "http://download.gna.org/pokersource/sources/poker-eval-138.0.tar.gz"
  sha1 "b31e8731dd1cd6717002e175a00d309fc8b02781"
  bottle do
    cellar :any
    revision 1
    sha1 "c9296719a25202cc2e285b9424765b323457a074" => :yosemite
    sha1 "80b6927bcbcef1e0c64bed7c57e57ddf0fdef008" => :mavericks
    sha1 "dd113717a5f0dabf6942217b6f48c65d62263755" => :mountain_lion
  end
  def install
    system "./configure", "--prefix=#{prefix}",
                          "--disable-debug",
                          "--disable-dependency-tracking"
    system "make", "install"
  end
end
 |