aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/shark.rb
blob: 3670775e81c97e44246e14434a8b27c5d3b95888 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class Shark < Formula
  homepage 'http://shark-project.sourceforge.net/'
  url 'http://downloads.sourceforge.net/project/shark-project/Shark%20Core/Shark%202.3.4/shark-2.3.4.zip'
  md5 '12d87a519c27b33800df11b7c78972ed'

  depends_on 'cmake' => :build

  def install
    system "cmake #{std_cmake_parameters} ."
    system "make install"
  end
end