c8d2d41c1d
This takes care of a `brew audit` complaint. Closes Homebrew/homebrew#18828. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
16 lines
378 B
Ruby
16 lines
378 B
Ruby
require 'formula'
|
|
|
|
class Points2grid < Formula
|
|
homepage 'https://github.com/CRREL/points2grid'
|
|
url 'https://github.com/CRREL/points2grid/archive/1.1.0.tar.gz'
|
|
sha1 'aef7e124b47022bee85bb3585f5996af5cb132e3'
|
|
|
|
depends_on 'cmake' => :build
|
|
depends_on 'boost'
|
|
depends_on 'pdal'
|
|
|
|
def install
|
|
system "cmake", ".", *std_cmake_args
|
|
system "make install"
|
|
end
|
|
end
|