librcsc 4.1.0

librcsc: the library for Robocup soccer simulation.
master
Takenori KUBO 2014-08-19 14:46:37 +02:00 committed by Mike McQuaid
parent b57f80e0cd
commit 43826edb14
1 changed files with 27 additions and 0 deletions

27
Formula/librcsc.rb Normal file
View File

@ -0,0 +1,27 @@
require "formula"
class Librcsc < Formula
homepage "http://sourceforge.jp/projects/rctools/"
url "http://dl.sourceforge.jp/rctools/51941/librcsc-4.1.0.tar.gz"
sha1 "2eaadd13fea559062053c571afe14b169f901136"
depends_on "boost"
def install
system "./configure", "--disable-debug",
"--prefix=#{prefix}"
system "make", "install"
end
test do
(testpath/"test.cpp").write <<-EOS.undent
#include <rcsc/rcg.h>
int main() {
rcsc::rcg::PlayerT p;
return 0;
}
EOS
system ENV.cxx, "test.cpp", "-o", "test", "-lrcsc_rcg"
system "./test"
end
end