2011-12-08 23:09:43 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Points2grid < Formula
|
|
|
|
homepage 'https://github.com/CRREL/points2grid'
|
2012-02-22 05:12:27 +00:00
|
|
|
url 'https://github.com/CRREL/points2grid/zipball/1.1.0'
|
2011-12-08 23:09:43 +00:00
|
|
|
md5 '39a8426675d6f5cb2414683c737b13bf'
|
|
|
|
|
|
|
|
depends_on 'cmake' => :build
|
|
|
|
depends_on 'boost'
|
|
|
|
depends_on 'pdal'
|
|
|
|
|
|
|
|
def install
|
2012-02-22 05:12:27 +00:00
|
|
|
system "cmake #{std_cmake_parameters} ."
|
2011-12-08 23:09:43 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|