homebrew-core/Formula/shark.rb

15 lines
367 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Shark < Formula
homepage 'http://shark-project.sourceforge.net/'
2012-02-22 05:12:27 +00:00
url 'http://downloads.sourceforge.net/project/shark-project/Shark%20Core/Shark%202.3.4/shark-2.3.4.zip'
md5 '12d87a519c27b33800df11b7c78972ed'
2011-11-30 02:54:32 +00:00
depends_on 'cmake' => :build
def install
2012-02-22 05:12:27 +00:00
system "cmake #{std_cmake_parameters} ."
system "make install"
end
end