aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexis Hildebrandt2011-02-09 23:57:19 +0100
committerAdam Vandenberg2011-02-10 09:30:07 -0800
commit15bab94f2ba8a3cbc5a0b29cc3a37dfa0f1bb3a3 (patch)
treedb6bcf11bda5b6df9e786541292d463b64ecadf6
parent15b597e399b11621a2e16ef20949d322b53b3495 (diff)
downloadhomebrew-15bab94f2ba8a3cbc5a0b29cc3a37dfa0f1bb3a3.tar.bz2
Shark 2.3.2
SHARK is a modular C++ library for the design and optimization of adaptive systems. It provides methods for linear and nonlinear optimization, in particular evolutionary and gradient-based algorithms, kernel-based learning algorithms and neural networks, and various other machine learning techniques. SHARK serves as a toolbox to support real world applications as well as research in different domains of computational intelligence and machine learning. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/shark.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/shark.rb b/Library/Formula/shark.rb
new file mode 100644
index 000000000..b0195ad42
--- /dev/null
+++ b/Library/Formula/shark.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class Shark <Formula
+ url 'http://downloads.sourceforge.net/project/shark-project/Shark%20Core/Shark%202.3.2/shark-2.3.2.tar.bz2'
+ homepage 'http://shark-project.sourceforge.net/'
+ md5 'e149c77b9f9722c93d9fac21b2abee10'
+
+ depends_on 'cmake'
+
+ def install
+ Dir.chdir('cmake')
+ system "cmake . #{std_cmake_parameters}"
+ system "make install"
+ end
+end