2011-12-08 23:08:16 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Pdal < Formula
|
|
|
|
homepage 'http://pointcloud.org'
|
2013-07-16 03:43:46 +00:00
|
|
|
url 'https://github.com/PDAL/PDAL/archive/0.9.8.tar.gz'
|
|
|
|
sha1 '6a6a76e6531473541746c19154630ff403099547'
|
2011-12-08 23:08:16 +00:00
|
|
|
|
2013-07-06 17:16:22 +00:00
|
|
|
head 'https://github.com/PDAL/PDAL.git'
|
|
|
|
|
2011-12-08 23:08:16 +00:00
|
|
|
depends_on 'cmake' => :build
|
|
|
|
depends_on 'boost'
|
|
|
|
|
|
|
|
def install
|
2012-05-22 21:37:04 +00:00
|
|
|
system "cmake", ".", *std_cmake_args
|
2011-12-08 23:08:16 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|