diff options
| author | grecocd | 2014-03-23 12:30:59 -0400 |
|---|---|---|
| committer | Adam Vandenberg | 2014-04-20 11:10:08 -0700 |
| commit | 701877f31665ea74da0a1afcb73041aec75d8a75 (patch) | |
| tree | 8cc36ba015699e886491c1c93fc00a221b649c46 /Library | |
| parent | 8c2ced360ee324effed5b686d8ea7893de72d622 (diff) | |
| download | homebrew-701877f31665ea74da0a1afcb73041aec75d8a75.tar.bz2 | |
shogun 3.2.0
Closes #27804.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/shogun.rb | 14 |
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 |
