homebrew-core/Formula/root.rb
2019-05-12 22:29:31 +02:00

182 lines
5.7 KiB
Ruby

class Root < Formula
desc "Object oriented framework for large scale data analysis"
homepage "https://root.cern.ch/"
url "https://root.cern.ch/download/root_v6.16.00.source.tar.gz"
version "6.16.00"
sha256 "2a45055c6091adaa72b977c512f84da8ef92723c30837c7e2643eecc9c5ce4d8"
revision 3
head "https://github.com/root-project/root.git"
bottle do
sha256 "2558ee66fabed50042b220de1c44dd76f1abf5d51189d87b9683344cadabf37f" => :mojave
sha256 "f58e215c3d48c84c82292765888c70075d3bec7cfd31b95fb23c0bca05e7c68a" => :high_sierra
sha256 "912c3a161650b00341b96007ebd614dccecf7fe3cb2bf97612ed801eae660156" => :sierra
end
# https://github.com/Homebrew/homebrew-core/issues/30726
# strings libCling.so | grep Xcode:
# /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1
# /Applications/Xcode.app/Contents/Developer
pour_bottle? do
reason "The bottle hardcodes locations inside Xcode.app"
satisfy do
MacOS::Xcode.installed? &&
MacOS::Xcode.prefix.to_s.include?("/Applications/Xcode.app/")
end
end
depends_on "cmake" => :build
depends_on "davix"
depends_on "fftw"
depends_on "gcc" # for gfortran
depends_on "graphviz"
depends_on "gsl"
# Temporarily depend on Homebrew libxml2 to work around a brew issue:
# https://github.com/Homebrew/brew/issues/5068
depends_on "libxml2" if MacOS.version >= :mojave
depends_on "lz4"
depends_on "openssl"
depends_on "pcre"
depends_on "python"
depends_on "tbb"
depends_on "xrootd"
depends_on "xz" # for LZMA
skip_clean "bin"
def install
# Work around "error: no member named 'signbit' in the global namespace"
ENV.delete("SDKROOT") if DevelopmentTools.clang_build_version >= 900
# Freetype/afterimage/gl2ps/lz4 are vendored in the tarball, so are fine.
# However, this is still permitting the build process to make remote
# connections. As a hack, since upstream support it, we inreplace
# this file to "encourage" the connection over HTTPS rather than HTTP.
inreplace "cmake/modules/SearchInstalledSoftware.cmake",
"http://lcgpackages",
"https://lcgpackages"
# Fix issue with ROOT 6.12-6.16 on a case-insensitive filesystem
# with /usr/local/include included before /usr/local/include/root
# Will be fixed in 6.16.02
# See https://trac.macports.org/ticket/57007
inreplace "core/base/inc/RConfig.h",
"<ROOT/RConfig.h>",
"\"ROOT/RConfig.h\""
py_exe = Utils.popen_read("which python3").strip
py_prefix = Utils.popen_read("python3 -c 'import sys;print(sys.prefix)'").chomp
py_inc = Utils.popen_read("python3 -c 'from distutils import sysconfig;print(sysconfig.get_python_inc(True))'").chomp
args = std_cmake_args + %W[
-Dcxx11=OFF
-DCLING_CXX_PATH=clang++
-DCMAKE_INSTALL_ELISPDIR=#{elisp}
-DPYTHON_EXECUTABLE=#{py_exe}
-DPYTHON_INCLUDE_DIR=#{py_inc}
-DPYTHON_LIBRARY=#{py_prefix}/Python
-Dbuiltin_cfitsio=OFF
-Dbuiltin_freetype=ON
-Ddavix=ON
-Dfftw3=ON
-Dfitsio=OFF
-Dfortran=ON
-Dgdml=ON
-Dgnuinstall=ON
-Dimt=ON
-Dmathmore=ON
-Dminuit2=ON
-Dmysql=OFF
-Dpgsql=OFF
-Dpython=ON
-Droofit=ON
-Dssl=ON
-Dtmva=ON
-Dxrootd=ON
]
# This will become -DCMAKE_CXX_STANDARD=14 (or 17) in ROOT 6.18
if MacOS.version < :mojave
args << "-Dcxx14=ON"
args << "-Dcxx17=OFF"
else
args << "-Dcxx14=OFF"
args << "-Dcxx17=ON"
end
mkdir "builddir" do
system "cmake", "..", *args
# Work around superenv stripping out isysroot leading to errors with
# libsystem_symptoms.dylib (only available on >= 10.12) and
# libsystem_darwin.dylib (only available on >= 10.13)
if MacOS.version < :high_sierra
system "xcrun", "make", "install"
else
system "make", "install"
end
chmod 0755, Dir[bin/"*.*sh"]
end
end
def caveats; <<~EOS
Because ROOT depends on several installation-dependent
environment variables to function properly, you should
add the following commands to your shell initialization
script (.bashrc/.profile/etc.), or call them directly
before using ROOT.
For bash users:
. #{HOMEBREW_PREFIX}/bin/thisroot.sh
For zsh users:
pushd #{HOMEBREW_PREFIX} >/dev/null; . bin/thisroot.sh; popd >/dev/null
For csh/tcsh users:
source #{HOMEBREW_PREFIX}/bin/thisroot.csh
For fish users:
. #{HOMEBREW_PREFIX}/bin/thisroot.fish
EOS
end
test do
(testpath/"test.C").write <<~EOS
#include <iostream>
void test() {
std::cout << "Hello, world!" << std::endl;
}
EOS
# Test ROOT command line mode
system "#{bin}/root", "-b", "-l", "-q", "-e", "gSystem->LoadAllLibraries(); 0"
# Test ROOT executable
(testpath/"test_root.bash").write <<~EOS
. #{bin}/thisroot.sh
root -l -b -n -q test.C
EOS
assert_equal "\nProcessing test.C...\nHello, world!\n",
shell_output("/bin/bash test_root.bash")
(testpath/"test.cpp").write <<~EOS
#include <iostream>
#include <TString.h>
int main() {
std::cout << TString("Hello, world!") << std::endl;
return 0;
}
EOS
# Test linking
(testpath/"test_compile.bash").write <<~EOS
. #{bin}/thisroot.sh
$(root-config --cxx) $(root-config --cflags) $(root-config --libs) $(root-config --ldflags) test.cpp
./a.out
EOS
assert_equal "Hello, world!\n",
shell_output("/bin/bash test_compile.bash")
# Test Python module
ENV["PYTHONPATH"] = lib/"root"
system "python3", "-c", "import ROOT; ROOT.gSystem.LoadAllLibraries()"
end
end