homebrew-core/Formula/flann.rb

40 lines
1.1 KiB
Ruby
Raw Normal View History

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.2-src.zip'
sha1 '62ace1c41365dfc8ceabde1381febc5c8b71ad98'
2012-08-28 04:45:37 +00:00
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'
2012-08-28 04:45:37 +00:00
depends_on 'octave' if build.include? 'enable-matlab'
depends_on 'numpy' => :python if build.include? 'enable-python'
def install
args = std_cmake_args
2012-08-28 04:45:37 +00:00
if build.include? 'enable-matlab'
args << '-DBUILD_MATLAB_BINDINGS:BOOL=ON'
else
args << '-DBUILD_MATLAB_BINDINGS:BOOL=OFF'
end
2012-08-28 04:45:37 +00:00
if build.include? 'enable-python'
args << '-DBUILD_PYTHON_BINDINGS:BOOL=ON'
else
args << '-DBUILD_PYTHON_BINDINGS:BOOL=OFF'
end
2012-08-28 04:45:37 +00:00
inreplace 'CMakeLists.txt', 'add_subdirectory( examples )', '' unless build.include? 'with-examples'
mkdir 'build' do
system 'cmake', '..', *args
system 'make install'
end
end
end