homebrew-core/Formula/pdal.rb

16 lines
316 B
Ruby
Raw Normal View History

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
2012-02-22 05:12:27 +00:00
system "cmake #{std_cmake_parameters} ."
system "make install"
end
end