shogun 3.2.0

Closes Homebrew/homebrew#27804.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
grecocd 2014-03-23 12:30:59 -04:00 committed by Adam Vandenberg
parent da8c922c68
commit 34a9933dac

14
Formula/shogun.rb Normal file
View file

@ -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