homebrew-core/Formula/pdal.rb
Pete Gadomski 24839ab4a9 PDAL: add head
Closes Homebrew/homebrew#21038.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-07-06 13:51:19 -05:00

17 lines
371 B
Ruby

require 'formula'
class Pdal < Formula
homepage 'http://pointcloud.org'
url 'https://github.com/PDAL/PDAL/archive/0.1.0.tar.gz'
sha1 '74f3f5d8b58c52b7eb2afe260a0020b7c4a6906e'
head 'https://github.com/PDAL/PDAL.git'
depends_on 'cmake' => :build
depends_on 'boost'
def install
system "cmake", ".", *std_cmake_args
system "make install"
end
end