forked from ahmadia/homebrew-science
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flann.rb
39 lines (31 loc) · 1.1 KB
/
flann.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
require 'formula'
class Flann < Formula
homepage 'http://www.cs.ubc.ca/~mariusm/index.php/FLANN/FLANN'
url 'http://people.cs.ubc.ca/~mariusm/uploads/FLANN/flann-1.8.4-src.zip'
sha1 'e03d9d458757f70f6af1d330ff453e3621550a4f'
option 'enable-python', 'Enable python bindings'
option 'enable-matlab', 'Enable matlab/octave bindings'
option 'with-examples', 'Build and install example binaries'
depends_on 'cmake' => :build
depends_on 'hdf5'
depends_on 'octave' if build.include? 'enable-matlab'
depends_on 'numpy' => :python if build.include? 'enable-python'
def install
args = std_cmake_args
if build.include? 'enable-matlab'
args << '-DBUILD_MATLAB_BINDINGS:BOOL=ON'
else
args << '-DBUILD_MATLAB_BINDINGS:BOOL=OFF'
end
if build.include? 'enable-python'
args << '-DBUILD_PYTHON_BINDINGS:BOOL=ON'
else
args << '-DBUILD_PYTHON_BINDINGS:BOOL=OFF'
end
inreplace 'CMakeLists.txt', 'add_subdirectory( examples )', '' if build.without? 'examples'
mkdir 'build' do
system 'cmake', '..', *args
system 'make install'
end
end
end