homebrew-core/Formula/stockfish.rb
2018-11-29 19:05:02 +01:00

30 lines
1 KiB
Ruby

class Stockfish < Formula
desc "Strong open-source chess engine"
homepage "https://stockfishchess.org/"
url "https://github.com/official-stockfish/Stockfish/files/2629649/sf_10.zip"
sha256 "9c2aa8b06935c930e80cba1426e10d76b6b1accc5a769e6bf1f41e15d79cadda"
head "https://github.com/official-stockfish/Stockfish.git"
bottle do
cellar :any_skip_relocation
sha256 "7e7d58466b8d4f325e69eb593dbb40074541e383b9b1e62dae83b3d9cddfc3a7" => :mojave
sha256 "be82b92aa3b8a89162caca9f206645cb6395b93898f7575ea782f754b2183bd8" => :high_sierra
sha256 "84e6d5d13b0a30843ed3eafd245a3c6a61ecf67635b3b18ba5950fb69aed1bb1" => :sierra
end
def install
if Hardware::CPU.features.include? :popcnt
arch = "x86-64-modern"
else
arch = Hardware::CPU.ppc? ? "ppc" : "x86"
arch += "-" + (MacOS.prefer_64_bit? ? "64" : "32")
end
system "make", "-C", "src", "build", "ARCH=#{arch}"
bin.install "src/stockfish"
end
test do
system "#{bin}/stockfish", "go", "depth", "20"
end
end