From ba0b37eba6c32bcdfe1d5951ce13abba8c32db0c Mon Sep 17 00:00:00 2001 From: Dan Fortunato Date: Wed, 21 Feb 2024 14:24:27 -0500 Subject: [PATCH] Remove fmm3d --- Formula/fmm3d.rb | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 Formula/fmm3d.rb diff --git a/Formula/fmm3d.rb b/Formula/fmm3d.rb deleted file mode 100644 index 61e2353..0000000 --- a/Formula/fmm3d.rb +++ /dev/null @@ -1,28 +0,0 @@ -class Fmm3d < Formula - desc "Fast multipole methods in three dimensions" - homepage "https://fmm3d.readthedocs.io" - url "https://github.com/flatironinstitute/FMM3D/archive/refs/tags/v1.0.2.tar.gz" - sha256 "e29a1ebe485d2431d4e330334b2853bc91b957afde6e24c2991099b28bd2b97c" - license "Apache-2.0" - head "https://github.com/flatironinstitute/FMM3D.git", branch: "master" - - depends_on "gcc" - - def install - ln_s "make.inc.macosx.gnu", "make.inc" if OS.mac? - - # Don't use -march=native when building a bottle - inreplace "makefile", "-march=native", "-march=#{Hardware.oldest_cpu}" if build.bottle? - - # Build libraries - system "make", "lib" - - # Install libraries - lib.install "lib/libfmm3d.so" - lib.install "lib-static/libfmm3d.a" - end - - test do - system "true" - end -end