Added liblas formula

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Michael Weisman 2010-10-15 13:44:02 -07:00 committed by Adam Vandenberg
parent 97948426cd
commit 0528dff344
1 changed files with 17 additions and 0 deletions

17
Formula/liblas.rb Normal file
View File

@ -0,0 +1,17 @@
require 'formula'
class Liblas <Formula
url 'http://trac.liblas.org/raw-attachment/wiki/1.6.0b1/libLAS-1.6.0b1.tar.gz'
homepage 'http://liblas.org'
md5 '4a08325b7daf4006e3762804d722b770'
depends_on 'cmake'
depends_on 'libgeotiff'
depends_on 'gdal'
depends_on 'boost'
def install
system "BOOST_ROOT=#{HOMEBREW_PREFIX} BOOST_INCLUDEDIR=#{HOMEBREW_PREFIX}/include cmake . #{std_cmake_parameters}"
system "make install"
end
end