homebrew-core/Formula/shogun.rb
2019-11-28 12:50:58 -05: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 3
bottle do
sha256 "affaea43f1e4ed4d0102675079a1334fa5dca7f836842e4d10a7f64b0c969860" => :catalina
sha256 "5362818881e0f42095759525a346d59c49a0f8420916abd8ed03fd9884b5da36" => :mojave
sha256 "070a2ee1245e3ed473b928efecf401a6365fde05755e81251d3f63840f285c88" => :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