forked from ahmadia/homebrew-science
-
Notifications
You must be signed in to change notification settings - Fork 0
/
beagle.rb
86 lines (68 loc) · 2.54 KB
/
beagle.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
class CudaRequirement < Requirement
build true
fatal true
satisfy { which "nvcc" }
env do
# Nvidia CUDA installs (externally) into this dir (hard-coded):
ENV.append "CFLAGS", "-F/Library/Frameworks"
# # because nvcc has to be used
ENV.append "PATH", which("nvcc").dirname, ":"
end
def message
<<-EOS.undent
To use this formula with NVIDIA graphics cards you will need to
download and install the CUDA drivers and tools from nvidia.com.
https://developer.nvidia.com/cuda-downloads
Select "Mac OS" as the Operating System and then select the
"Developer Drivers for MacOS" package.
You will also need to download and install the "CUDA Toolkit" package.
The `nvcc` has to be in your PATH then (which is normally the case).
EOS
end
end
class Beagle < Formula
homepage "https://github.com/beagle-dev/beagle-lib"
url "https://github.com/beagle-dev/beagle-lib/archive/beagle_release_2_1_2.tar.gz"
sha256 "82ff13f4e7d7bffab6352e4551dfa13afabf82bff54ea5761d1fc1e78341d7de"
head "https://github.com/beagle-dev/beagle-lib.git"
bottle do
root_url "https://homebrew.bintray.com/bottles-science"
cellar :any
sha256 "05f6d54c9d2f3485848ac0dd66352c5966537115c542200ff78085160e8a70a4" => :yosemite
sha256 "896db76f702251e8a61f34af9d9b8265faf2a607d9090914c0344f5e9cdef17b" => :mavericks
sha256 "b9d7a9be41827bbf8134c3a6ae484424993b34a20bc0f776fc5c5c5f4600efc2" => :mountain_lion
end
option "with-opencl", "Build with OpenCL GPU/CPU acceleration"
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
depends_on "doxygen" => :build
depends_on CudaRequirement => :optional
def install
system "./autogen.sh"
args = [ "--prefix=#{prefix}" ]
args << "--enable-osx-leopard" if MacOS.version <= :leopard
args << "--with-cuda=#{Pathname(which "nvcc").dirname}" if build.with? "cuda"
args << "--enable-opencl" if build.with? "opencl"
system "./configure", *args
# The JNI bindings cannot be built in parallel, else we get
# "ld: library not found for -lhmsbeagle"
# (https://github.com/Homebrew/homebrew-science/issues/67)
ENV.deparallelize
system "make"
system "make", "install"
system "make", "check"
end
test do
(testpath/"test.cpp").write <<-EOS.undent
#include "libhmsbeagle/platform.h"
int main()
{
return 0;
}
EOS
system ENV.cxx, "-I#{include}/libhmsbeagle-1",
testpath/"test.cpp", "-o", "test"
system "./test"
end
end