2011-12-08 23:09:43 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Points2grid < Formula
|
|
|
|
homepage 'https://github.com/CRREL/points2grid'
|
2013-03-29 20:29:20 +00:00
|
|
|
url 'https://github.com/CRREL/points2grid/archive/1.1.0.tar.gz'
|
|
|
|
sha1 'aef7e124b47022bee85bb3585f5996af5cb132e3'
|
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
|