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-09-27 16:52:09 +00:00
|
|
|
revision 1
|
2014-05-29 08:38:58 +00:00
|
|
|
|
2014-05-29 09:03:26 +00:00
|
|
|
bottle do
|
2014-09-27 17:05:10 +00:00
|
|
|
sha1 "a0aecc3d53ba2b343ea0a62a50d0d3bbe1de85f9" => :mavericks
|
|
|
|
sha1 "0e34b4fad960a095b4009754c18860ac515eb486" => :mountain_lion
|
|
|
|
sha1 "e74e8ddb2eafa1a884663a1784bca8734d7ee438" => :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
|