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

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

  depends_on 'cmake'

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