diff options
| author | Ken Mankoff | 2011-12-08 15:09:43 -0800 |
|---|---|---|
| committer | Jack Nagel | 2012-01-29 14:36:37 -0600 |
| commit | 0a63b0b21695e2b3d1c2dd0a0060e72a78ddba0b (patch) | |
| tree | 9d837cfaa7658c5df39159919cc606a1a1bd2981 /Library/Formula | |
| parent | 93eca21de4ced8cae9bc369e4f0ea26bbaa7b5f4 (diff) | |
| download | homebrew-0a63b0b21695e2b3d1c2dd0a0060e72a78ddba0b.tar.bz2 | |
New formula: points2grid
Closes #9049.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/points2grid.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/points2grid.rb b/Library/Formula/points2grid.rb new file mode 100644 index 000000000..60135cba4 --- /dev/null +++ b/Library/Formula/points2grid.rb @@ -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 |
