aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/shogun.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/shogun.rb b/Library/Formula/shogun.rb
new file mode 100644
index 000000000..dcd1a9fec
--- /dev/null
+++ b/Library/Formula/shogun.rb
@@ -0,0 +1,14 @@
+require "formula"
+
+class Shogun < Formula
+ homepage "http://shogun-toolbox.org"
+ url "http://shogun-toolbox.org/archives/shogun/releases/3.2/sources/shogun-3.2.0.tar.bz2"
+ sha1 "442e212a19d0297b4df45a4dfe7deb6312441e54"
+
+ depends_on "cmake" => :build
+
+ def install
+ system "cmake", ".", *std_cmake_args
+ system "make", "install"
+ end
+end