homebrew-core/Formula/shogun.rb
Viktor Szakats d81f4c8f24 shogun: secure url(s)
Note that `url` is broken, regardless of the protocol. Latest version
is released here:
  https://github.com/shogun-toolbox/shogun/releases
2019-07-16 20:09:32 +00:00

110 lines
3.6 KiB
Ruby

class Shogun < Formula
desc "Large scale machine learning toolbox"
homepage "https://www.shogun-toolbox.org/"
url "https://www.shogun-toolbox.org/archives/shogun/releases/6.1/sources/shogun-6.1.3.tar.bz2"
sha256 "57169dc8c05b216771c567b2ee2988f14488dd13f7d191ebc9d0703bead4c9e6"
revision 5
bottle do
sha256 "3158c1d5951a23e542749a3dea2d6e8c03bbd19a933aaddc0d5486a98cebddfc" => :mojave
sha256 "53d96f0be033c8ce7c8ff3109469b2ada7ab627bb33820f501525b553f0fdf75" => :high_sierra
sha256 "79cce50d58895d20c9e2f11eb16461ae72318d9f7de69df86e755c1f10d3f294" => :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