homebrew-core/Formula/points2grid.rb
Ken Mankoff 5f153cb73d New formula: points2grid
Closes Homebrew/homebrew#9049.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-01-29 14:36:37 -06:00

16 lines
366 B
Ruby

require 'formula'
class Points2grid < Formula
url 'https://github.com/CRREL/points2grid/zipball/1.1.0'
homepage 'https://github.com/CRREL/points2grid'
md5 '39a8426675d6f5cb2414683c737b13bf'
depends_on 'cmake' => :build
depends_on 'boost'
depends_on 'pdal'
def install
system "cmake . #{std_cmake_parameters}"
system "make install"
end
end