17 lines
366 B
Ruby
17 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
|