aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKen Mankoff2011-12-08 15:08:16 -0800
committerCharlie Sharpsteen2011-12-17 12:24:45 -0800
commite6afd6c6555f7c3c893403f6e721b8bf989fa6a8 (patch)
treef6319134aa5f015e034b5b407a8d6855fd1b343d
parent3b03b14c21c12e06e66baecc80f28797313fb194 (diff)
downloadhomebrew-e6afd6c6555f7c3c893403f6e721b8bf989fa6a8.tar.bz2
New Formula: PDAL
PDAL is a library for working with point cloud data. Closes #9048. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
-rw-r--r--Library/Formula/pdal.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/pdal.rb b/Library/Formula/pdal.rb
new file mode 100644
index 000000000..3067ce6b3
--- /dev/null
+++ b/Library/Formula/pdal.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class Pdal < Formula
+ homepage 'http://pointcloud.org'
+ url 'https://github.com/PDAL/PDAL/zipball/0.1.0'
+ md5 'fd5766b2da2337971cbf0e465dc5bd50'
+
+ depends_on 'cmake' => :build
+ depends_on 'boost'
+
+ def install
+ system "cmake . #{std_cmake_parameters}"
+ system "make install"
+ end
+end