-
Notifications
You must be signed in to change notification settings - Fork 42
/
rcssserver.rb
90 lines (73 loc) · 3.06 KB
/
rcssserver.rb
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
class Rcssserver < Formula
desc "Server for RoboCup Soccer Simulator"
homepage "https://sserver.sourceforge.io/"
revision 4
stable do
url "https://downloads.sourceforge.net/sserver/rcssserver/15.2.2/rcssserver-15.2.2.tar.gz"
sha256 "329b3008689dac16d1f39ad8f5c8341aef283ef3750d137dcf299d1fbc30355a"
resource "rcssmonitor" do
url "https://downloads.sourceforge.net/sserver/rcssmonitor/15.1.1/rcssmonitor-15.1.1.tar.gz"
sha256 "51f85f65cd147f5a9018a6a2af117fc45358eb2989399343eaadd09f2184ee41"
end
resource "rcsslogplayer" do
url "https://downloads.sourceforge.net/sserver/rcsslogplayer/15.1.1/rcsslogplayer-15.1.1.tar.gz"
sha256 "216473a9300e0733f66054345b8ea0afc50ce922341ac48eb5ef03d09bb740e6"
end
end
bottle do
root_url "https://homebrew.bintray.com/bottles"
sha256 el_capitan: "c38e5393d6d4c9074d2c70da05e0be9f61bc2f935848a3e2061a93f2b002e9af"
sha256 yosemite: "d7db1cd2a729f558cbb3569e1c858f9de8b6ced18b8eaf110b8db53881ad8c84"
sha256 mavericks: "053199b5e554e73a385ffd7de6ef8bf9e04b1c3876e6fed0b9ca1c98066364a1"
end
head do
url "svn://svn.code.sf.net/p/sserver/code/rcss/trunk/rcssserver"
resource "rcssmonitor" do
url "svn://svn.code.sf.net/p/sserver/code/rcss/trunk/rcssmonitor_qt4"
end
resource "rcsslogplayer" do
url "svn://svn.code.sf.net/p/sserver/code/rcss/trunk/rcsslogplayer"
end
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
end
depends_on "flex" => :build
depends_on "pkg-config" => :build
depends_on "boost"
depends_on "cartr/qt4/qt@4"
def install
ENV.j1
if build.head?
# These inreplaces are artifacts of the upstream packaging process:
# https://sourceforge.net/p/sserver/discussion/76439/thread/bd3ad6e4
inreplace "src/Makefile.am" do |s|
s.gsub! "coach_lang_parser.h", "coach_lang_parser.hpp"
s.gsub! "player_command_parser.h", "player_command_parser.hpp"
end
inreplace "src/coach_lang_tok.lpp", "coach_lang_parser.h", "coach_lang_parser.hpp"
inreplace "src/player_command_tok.lpp", "player_command_parser.h", "player_command_parser.hpp"
system "./bootstrap"
end
system "./configure", "--prefix=#{prefix}"
system "make", "install"
resources.each do |r|
r.stage do
# This line being glued together means unrelated libraries
# are joined and cause a fatal linking error build compile.
# -framework Security-ldbus-1 -lz -ldbus-1
# ld: framework not found Security-ldbus-1
# Currently same error in both rcssmonitor & rcsslogplayer.
# https://sourceforge.net/p/sserver/mailman/message/34765272/
inreplace "configure", "$QT4_REQUIRED_MODULES)$($PKG_CONFIG",
"$QT4_REQUIRED_MODULES) $($PKG_CONFIG"
system "./bootstrap" if build.head?
system "./configure", "--prefix=#{prefix}"
system "make", "install"
end
end
end
test do
assert_match version.to_s, shell_output("#{bin}/rcssserver help", 1)
end
end