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'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '31feb8890380964b875ed461b1ed6b769649ee6e'
|
2011-12-08 23:09:43 +00:00
|
|
|
|
|
|
|
depends_on 'cmake' => :build
|
|
|
|
depends_on 'boost'
|
|
|
|
depends_on 'pdal'
|
|
|
|
|
|
|
|
def install
|
2012-05-22 21:37:04 +00:00
|
|
|
system "cmake", ".", *std_cmake_args
|
2011-12-08 23:09:43 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|