homebrew-core/Formula/shogun.rb
2019-10-03 15:22:22 -04:00

112 lines
3.7 KiB
Ruby

class Shogun < Formula
desc "Large scale machine learning toolbox"
homepage "https://www.shogun-toolbox.org/"
url "https://github.com/shogun-toolbox/shogun.git",
:tag => "shogun_6.1.4",
:revision => "ab274e7ab6bf24dd598c1daf1e626cb686d6e1cc"
sha256 "57169dc8c05b216771c567b2ee2988f14488dd13f7d191ebc9d0703bead4c9e6"
revision 2
bottle do
sha256 "4a4357b68122c0cca55e2e61860693119c961117cd27b0eb18d305298b913ced" => :catalina
sha256 "3be310b08bf199da3f3e95a813f02ec73138a841785a4f59d9ba624dfeabc8d2" => :mojave
sha256 "cfcd1c05a76fcb7af011232c0e534c46c8abe050da5f4d971ffb20f3ca2d3eb4" => :high_sierra
end
depends_on "cmake" => :build
depends_on "pkg-config" => :build
depends_on "arpack"
depends_on "eigen"
depends_on "glpk"
depends_on "hdf5"
depends_on "json-c"
depends_on "lzo"
depends_on "nlopt"
depends_on "openblas"
depends_on "protobuf"
depends_on "snappy"
depends_on "xz"
# Fixes when Accelerator framework is to be used as a LAPACK backend for
# Eigen. CMake swallows some of the include header flags hence on some
# versions of macOS, hence the include of <vecLib/cblas.h> will fail.
# Upstream commit from 30 Jan 2018 https://github.com/shogun-toolbox/shogun/commit/6db834fb4ca9783b6e5adfde808d60ebfca0abc9
patch do
url "https://raw.githubusercontent.com/Homebrew/formula-patches/9df360c/shogun/fix_veclib.patch"
sha256 "de7ebe4c91da9f63fc322c5785f687c0005ed8df2c70cd3e9024fbac7b6d3745"
end
# Fixes compiling with json-c 0.13.1. Shogun 6.1.3 is using the
# deprecated json-c is_error() macro which got removed in json-c 0.13.1.
patch do
url "https://github.com/shogun-toolbox/shogun/commit/365ce4c4c7.patch?full_index=1"
sha256 "0a1c3e2e16b2ce70855c1f15876bddd5e5de35ab29290afceacdf7179c4558cb"
end
def install
ENV.cxx11
args = std_cmake_args + %w[
-DBLA_VENDOR=OpenBLAS
-DBUILD_EXAMPLES=OFF
-DBUILD_META_EXAMPLES=OFF
-DBUNDLE_JSON=OFF
-DBUNDLE_NLOPT=OFF
-DCMAKE_DISABLE_FIND_PACKAGE_ARPREC=ON
-DCMAKE_DISABLE_FIND_PACKAGE_CCache=ON
-DCMAKE_DISABLE_FIND_PACKAGE_ColPack=ON
-DCMAKE_DISABLE_FIND_PACKAGE_CPLEX=ON
-DCMAKE_DISABLE_FIND_PACKAGE_Ctags=ON
-DCMAKE_DISABLE_FIND_PACKAGE_Doxygen=ON
-DCMAKE_DISABLE_FIND_PACKAGE_GDB=ON
-DCMAKE_DISABLE_FIND_PACKAGE_LpSolve=ON
-DCMAKE_DISABLE_FIND_PACKAGE_Mosek=ON
-DCMAKE_DISABLE_FIND_PACKAGE_OpenMP=ON
-DCMAKE_DISABLE_FIND_PACKAGE_Pandoc=ON
-DCMAKE_DISABLE_FIND_PACKAGE_rxcpp=ON
-DCMAKE_DISABLE_FIND_PACKAGE_Sphinx=ON
-DCMAKE_DISABLE_FIND_PACKAGE_TFLogger=ON
-DCMAKE_DISABLE_FIND_PACKAGE_ViennaCL=ON
-DENABLE_COVERAGE=OFF
-DENABLE_LTO=ON
-DENABLE_TESTING=OFF
-DINTERFACE_CSHARP=OFF
-DINTERFACE_JAVA=OFF
-DINTERFACE_LUA=OFF
-DINTERFACE_OCTAVE=OFF
-DINTERFACE_PERL=OFF
-DINTERFACE_PYTHON=OFF
-DINTERFACE_R=OFF
-DINTERFACE_RUBY=OFF
-DINTERFACE_SCALA=OFF
]
mkdir "build" do
system "cmake", *args, ".."
system "make"
system "make", "install"
end
inreplace lib/"cmake/shogun/ShogunTargets.cmake",
Formula["hdf5"].prefix.realpath,
Formula["hdf5"].opt_prefix
end
test do
(testpath/"test.cpp").write <<~EOS
#include <cassert>
#include <cstring>
#include <shogun/base/init.h>
#include <shogun/lib/versionstring.h>
int main() {
shogun::init_shogun_with_defaults();
assert(std::strcmp(MAINVERSION, "#{version}") == 0);
shogun::exit_shogun();
return 0;
}
EOS
system ENV.cxx, "-std=c++11", "-I#{include}", "test.cpp", "-o", "test",
"-L#{lib}", "-lshogun"
system "./test"
end
end