aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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