forked from osrf/homebrew-simulation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gazebo1.rb
77 lines (65 loc) · 2.69 KB
/
gazebo1.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
class Gazebo1 < Formula
desc "Gazebo robot simulator"
homepage "http://gazebosim.org"
url "http://gazebosim.org/distributions/gazebo/releases/gazebo-1.9.7.tar.bz2"
sha256 "27f3f81d3b11f997e8879e660445e49e81f8d15909ef7352b166c5050c61573a"
head "https://bitbucket.org/osrf/gazebo", :branch => "gazebo_1.9", :using => :hg
depends_on "cmake" => :build
depends_on "pkg-config" => :build
depends_on "boost"
depends_on "doxygen"
depends_on "freeimage"
depends_on "libtar"
depends_on "ogre"
depends_on "protobuf"
depends_on "protobuf-c"
depends_on "qt"
depends_on "sdformat"
depends_on "tbb"
depends_on "tinyxml"
depends_on "bullet" => [:optional, "with-shared", "with-double-precision"]
depends_on "ffmpeg" => :optional
depends_on "gts" => :optional
depends_on "player" => :optional
depends_on "simbody" => :optional
conflicts_with "gazebo2", :because => "Differing version of the same formula"
conflicts_with "gazebo3", :because => "Differing version of the same formula"
conflicts_with "gazebo4", :because => "Differing version of the same formula"
conflicts_with "gazebo5", :because => "Differing version of the same formula"
conflicts_with "gazebo6", :because => "Differing version of the same formula"
conflicts_with "gazebo7", :because => "Differing version of the same formula"
conflicts_with "gazebo8", :because => "Differing version of the same formula"
patch do
# Fix build when homebrew python is installed
url "https://gist.githubusercontent.com/scpeters/9199370/raw/afe595587e38737c537124a3652db99de026c272/brew_python_fix.patch"
sha256 "c4774f64c490fa03236564312bd24a8630963762e25d98d072e747f0412df18e"
end
patch do
# Fix build with protobuf 2.6 (gazebo #1289)
url "https://bitbucket.org/osrf/gazebo/commits/4bb4390655af316b582f8e0fea23438426b4e681/raw/"
sha256 "70d39a547aa27a5357ddf0859d41515c945730ca1cef770be3c0cff2e29340d2"
end
patch do
# Fix build with boost 1.57 (gazebo #1399)
url "https://bitbucket.org/osrf/gazebo/commits/39f8398003ada7381dc03096f666627e84c738eb/raw/"
sha256 "6d38b6f01491f0419d70d72c067a69b75dfc3ac4520b4ceaeb7f0da9436b4a37"
end
patch do
# Fix for compatibility with boost 1.58
url "https://bitbucket.org/osrf/gazebo/commits/91f6f3c59f40af34855548c37857955d08fd1368/raw/"
sha256 "1a8b232be58f36bf5fa0129169f4d4d40d72624b460735457c781ba3e02c7900"
end
def install
ENV.m64
cmake_args = std_cmake_args
cmake_args << "-DENABLE_TESTS_COMPILATION:BOOL=False"
cmake_args << "-DFORCE_GRAPHIC_TESTS_COMPILATION:BOOL=True"
mkdir "build" do
system "cmake", "..", *cmake_args
system "make", "install"
end
end
test do
system "gazebo", "--help"
end
end