homebrew-core/Formula/liblas.rb

31 lines
877 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Liblas < Formula
homepage 'http://liblas.org'
url 'http://download.osgeo.org/liblas/libLAS-1.7.0.tar.gz'
md5 '03de7a61132902846c12f3b28c38eb37'
2011-11-30 02:54:32 +00:00
depends_on 'cmake' => :build
depends_on 'libgeotiff'
depends_on 'gdal'
depends_on 'boost'
def options
2012-02-05 20:48:35 +00:00
[['--with-test', 'Verify during install with `make test`.']]
end
def install
2012-02-22 04:48:36 +00:00
mkdir 'macbuild' do
# CMake finds boost, but variables like this were set in the last
# version of this formula. Now using the variables listed here:
# http://liblas.org/compilation.html
ENV['Boost_INCLUDE_DIR'] = "#{HOMEBREW_PREFIX}/include"
ENV['Boost_LIBRARY_DIRS'] = "#{HOMEBREW_PREFIX}/lib"
system "cmake #{std_cmake_parameters} .."
system "make"
system "make test" if ARGV.include? '--with-test'
system "make install"
end
end
end