homebrew-core/Formula/points2grid.rb
Andrew Janke c8d2d41c1d Change github /tarball/ URLs to /archive/ for formulae L-Z
This takes care of a `brew audit` complaint.

Closes Homebrew/homebrew#18828.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-03-29 14:59:28 -07:00

16 lines
378 B
Ruby

require 'formula'
class Points2grid < Formula
homepage 'https://github.com/CRREL/points2grid'
url 'https://github.com/CRREL/points2grid/archive/1.1.0.tar.gz'
sha1 'aef7e124b47022bee85bb3585f5996af5cb132e3'
depends_on 'cmake' => :build
depends_on 'boost'
depends_on 'pdal'
def install
system "cmake", ".", *std_cmake_args
system "make install"
end
end