blob: e0f70f15225522e161030f92000b84de29aa42ac (
plain)
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
|
require 'formula'
class Vrpn < Formula
url 'git://git.cs.unc.edu/vrpn.git', :tag => 'version_07.28'
version '07.28'
homepage 'http://vrpn.org'
depends_on 'cmake' => :build
def options
[['--clients', 'Build client apps and tests.']]
end
def install
args = std_cmake_parameters.split
if ARGV.include? '--clients'
args << "-DVRPN_BUILD_CLIENTS:BOOL=ON"
else
args << "-DVRPN_BUILD_CLIENTS:BOOL=OFF"
end
args << ".."
Dir.mkdir "build"
Dir.chdir "build" do
system "cmake", *args
system "make install"
end
end
end
|