New formula: points2grid
Closes Homebrew/homebrew#9049. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
parent
5182097ca1
commit
5f153cb73d
1 changed files with 16 additions and 0 deletions
16
Formula/points2grid.rb
Normal file
16
Formula/points2grid.rb
Normal file
|
@ -0,0 +1,16 @@
|
|||
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
|
Loading…
Reference in a new issue