blob: c57d0d7515d3e307c7c12fce5fa9ee736ea8d6a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
|