blob: 88c3ad11f4dd9e1a68c303a164c98d0df3227ce8 (
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_args
system "make install"
end
end
|