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

class Points2grid < Formula
  homepage 'https://github.com/CRREL/points2grid'
  url 'https://github.com/CRREL/points2grid/archive/1.1.1.tar.gz'
  sha1 'f0a7841f1cd804b67bf7ccd15bc5b3bcada975a7'

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

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