a2eb80f8c2
Closes Homebrew/homebrew#31698. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
28 lines
783 B
Ruby
28 lines
783 B
Ruby
require "formula"
|
|
|
|
class Soccerwindow2 < Formula
|
|
homepage "http://sourceforge.jp/projects/rctools/"
|
|
url "http://dl.sourceforge.jp/rctools/51942/soccerwindow2-5.1.0.tar.gz"
|
|
sha1 "366f80591d39aaca0717bc2fb8993e0b5eb50ef2"
|
|
|
|
bottle do
|
|
sha1 "211691f9c8e7e89c8451693065b2ce7b01fbb65f" => :mavericks
|
|
sha1 "ffa56eb8ce4c37bb5f9725ed657733e1246dba22" => :mountain_lion
|
|
sha1 "64dfa71965958b205ba50c439efc83d10f872535" => :lion
|
|
end
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "qt"
|
|
depends_on "boost"
|
|
depends_on "librcsc"
|
|
|
|
def install
|
|
system "./configure", "--disable-debug",
|
|
"--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/soccerwindow2 -v | grep 'soccerwindow2 Version #{version}'"
|
|
end
|
|
end
|