75 lines
3.2 KiB
Ruby
75 lines
3.2 KiB
Ruby
class Igraph < Formula
|
|
desc "Network analysis package"
|
|
homepage "https://igraph.org/"
|
|
url "https://github.com/igraph/igraph/releases/download/0.9.5/igraph-0.9.5.tar.gz"
|
|
sha256 "c4e3f67892e1e287865d799162406b3f94916ad6f2cc069a9239e36ca495a17a"
|
|
license "GPL-2.0-or-later"
|
|
|
|
bottle do
|
|
sha256 cellar: :any, arm64_monterey: "963a885bf1ebe2fddd44aa2da91de2397a69616a48ad2c872e4faeaf11d72372"
|
|
sha256 cellar: :any, arm64_big_sur: "61684421a7e0c55bd195d818885186fbdcc758034c55e70d4306ff2af1a18e7f"
|
|
sha256 cellar: :any, monterey: "ae0d8d05ceae7ad1630a9d7c4b60e84fe7469d08fcfe192a798f05f486e73834"
|
|
sha256 cellar: :any, big_sur: "5e396ac29d441886bf48aa317ff9744b79bcdb1ebd254b37a7f5e38560823378"
|
|
sha256 cellar: :any, catalina: "6947ede64ee93d36a37e0b247aa4a9b37acc9ea0c7c0f026a73f0e48944bfd75"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "3e0b6f6630293735df966e39ef9fad7ff8f3fb7ce0f8359945508c14cb00dc8e"
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "arpack"
|
|
depends_on "glpk"
|
|
depends_on "gmp"
|
|
depends_on "openblas"
|
|
depends_on "suite-sparse"
|
|
|
|
uses_from_macos "libxml2"
|
|
|
|
def install
|
|
mkdir "build" do
|
|
# explanation of extra options:
|
|
# * we want a shared library, not a static one
|
|
# * link-time optimization should be enabled if the compiler supports it
|
|
# * thread-local storage of global variables is enabled
|
|
# * force the usage of external dependencies from Homebrew where possible
|
|
# * GraphML support should be compiled in (needs libxml2)
|
|
# * BLAS and LAPACK should come from OpenBLAS
|
|
# * prevent the usage of ccache even if it is installed to ensure that we
|
|
# have a clean build
|
|
system "cmake", "-G", "Unix Makefiles",
|
|
"-DBUILD_SHARED_LIBS=ON",
|
|
"-DIGRAPH_ENABLE_LTO=AUTO",
|
|
"-DIGRAPH_ENABLE_TLS=ON",
|
|
"-DIGRAPH_GLPK_SUPPORT=ON",
|
|
"-DIGRAPH_GRAPHML_SUPPORT=ON",
|
|
"-DIGRAPH_USE_INTERNAL_ARPACK=OFF",
|
|
"-DIGRAPH_USE_INTERNAL_BLAS=OFF",
|
|
"-DIGRAPH_USE_INTERNAL_CXSPARSE=OFF",
|
|
"-DIGRAPH_USE_INTERNAL_GLPK=OFF",
|
|
"-DIGRAPH_USE_INTERNAL_GMP=OFF",
|
|
"-DIGRAPH_USE_INTERNAL_LAPACK=OFF",
|
|
"-DBLA_VENDOR=OpenBLAS",
|
|
"-DUSE_CCACHE=OFF",
|
|
"..", *std_cmake_args
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.c").write <<~EOS
|
|
#include <igraph.h>
|
|
int main(void) {
|
|
igraph_real_t diameter;
|
|
igraph_t graph;
|
|
igraph_rng_seed(igraph_rng_default(), 42);
|
|
igraph_erdos_renyi_game(&graph, IGRAPH_ERDOS_RENYI_GNP, 1000, 5.0/1000, IGRAPH_UNDIRECTED, IGRAPH_NO_LOOPS);
|
|
igraph_diameter(&graph, &diameter, 0, 0, 0, IGRAPH_UNDIRECTED, 1);
|
|
printf("Diameter = %f\\n", (double) diameter);
|
|
igraph_destroy(&graph);
|
|
}
|
|
EOS
|
|
system ENV.cc, "test.c", "-I#{include}/igraph", "-L#{lib}",
|
|
"-ligraph", "-lm", "-o", "test"
|
|
assert_match "Diameter = 9", shell_output("./test")
|
|
end
|
|
end
|