aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/pdal.rb
blob: 8fcfb586078ec8eae3605bc3e917302f7b73d5e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'formula'

class Pdal < Formula
  homepage 'http://pointcloud.org'
  url 'https://github.com/PDAL/PDAL/archive/0.9.8.tar.gz'
  sha1 '6a6a76e6531473541746c19154630ff403099547'

  head 'https://github.com/PDAL/PDAL.git'

  depends_on 'cmake' => :build
  depends_on 'boost'

  def install
    system "cmake", ".", *std_cmake_args
    system "make install"
  end
end