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

class Tetgen < Formula
  homepage "http://tetgen.org/"
  url "http://tetgen.org/files/tetgen1.4.3.tar.gz"
  sha1 "16c6de93837a34c8661dd3bfcc8171591a93564a"

  def install
    system "make" # build the tetgen binary
    system "make tetlib" # build the library file libtet.a
    bin.install "tetgen"
    lib.install "libtet.a"
  end

  test do
    system "#{bin}/tetgen"
  end
end