require 'formula' class Figtoipe < Formula url 'http://downloads.sourceforge.net/project/ipe7/tools/figtoipe-20091205.tar.gz' homepage 'http://ipe7.sourceforge.net/' md5 'a19e0712df137939c37c194b551da6b8' def install system "make" bin.install "figtoipe" man1.install "figtoipe.1" doc.install "README" end end href='https://git.teddywing.com/fork/homebrew' title='homebrew Git repository'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/points2grid.rb
blob: 08239bda036b2921a6f251ff7885b5f4f80cf557 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'formula'

class Points2grid < Formula
  homepage 'https://github.com/CRREL/points2grid'
  url 'https://github.com/CRREL/points2grid/zipball/1.1.0'
  md5 '39a8426675d6f5cb2414683c737b13bf'

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

  def install
    system "cmake #{std_cmake_parameters} ."
    system "make install"
  end
end