homebrew-core/Formula/pdal.rb
Ken Mankoff 37e1292e56 New Formula: PDAL
PDAL is a library for working with point cloud data.

Closes Homebrew/homebrew#9048.

Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2011-12-17 12:24:45 -08:00

15 lines
316 B
Ruby

require 'formula'
class Pdal < Formula
homepage 'http://pointcloud.org'
url 'https://github.com/PDAL/PDAL/zipball/0.1.0'
md5 'fd5766b2da2337971cbf0e465dc5bd50'
depends_on 'cmake' => :build
depends_on 'boost'
def install
system "cmake . #{std_cmake_parameters}"
system "make install"
end
end