2014-05-29 08:38:58 +00:00
|
|
|
require "formula"
|
|
|
|
|
|
|
|
class Sfcgal < Formula
|
|
|
|
homepage "http://sfcgal.org/"
|
2014-08-20 06:14:57 +00:00
|
|
|
url "https://github.com/Oslandia/SFCGAL/archive/v1.0.5.tar.gz"
|
|
|
|
sha256 "a9cdaf7334bf28dc71c6338d090c1d1402041c5e320b6c2e3669f7758946a01c"
|
2014-05-29 08:38:58 +00:00
|
|
|
|
2014-05-29 09:03:26 +00:00
|
|
|
bottle do
|
2014-08-20 06:27:29 +00:00
|
|
|
sha1 "872925e415e5e3acf4aaf3d0ff6fb9dfad0d0397" => :mavericks
|
|
|
|
sha1 "349e86e0f903217ac0e3e457ff46f3b24eea0fd6" => :mountain_lion
|
|
|
|
sha1 "054dd40ae4f4007a886a98ade85441eb3be6710f" => :lion
|
2014-05-29 09:03:26 +00:00
|
|
|
end
|
|
|
|
|
2014-05-29 08:38:58 +00:00
|
|
|
depends_on "cmake" => :build
|
|
|
|
depends_on "cgal"
|
2014-05-29 22:22:45 +00:00
|
|
|
depends_on "gmp"
|
|
|
|
depends_on "mpfr"
|
2014-05-29 08:38:58 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "cmake", ".", *std_cmake_args
|
|
|
|
system "make", "install"
|
|
|
|
end
|
|
|
|
end
|