aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/sfcgal.rb
blob: 0b964a494447c47da1839ea4b2d8047a369f8bb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
require "formula"

class Sfcgal < Formula
  homepage "http://sfcgal.org/"
  url "https://github.com/Oslandia/SFCGAL/archive/v1.0.5.tar.gz"
  sha256 "a9cdaf7334bf28dc71c6338d090c1d1402041c5e320b6c2e3669f7758946a01c"
  revision 1

  bottle do
    revision 1
    sha1 "1a5ade35a1dcbe31b085e93c92fbe34f52f2239c" => :yosemite
    sha1 "eaa2e1ba6ec094304639b74a90e1f43897af5055" => :mavericks
    sha1 "904f9e44b4da3545d8bfec3fe862a1682cbdf25f" => :mountain_lion
  end

  depends_on "cmake" => :build
  depends_on "cgal"
  depends_on "gmp"
  depends_on "mpfr"

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