blob: 51bc2ba82006abf9af5a490906dd1d0428363c93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
require 'formula'
class Konoha < Formula
homepage 'http://www.konohascript.org/'
url 'http://konoha.googlecode.com/files/konoha-1.0.0-952.tar.gz'
sha1 'c4cfdc956bd583f8c3e8e696eeb0316ca78b1389'
depends_on 'cmake' => :build
depends_on MPIDependency.new(:cc, :cxx)
depends_on 'pcre'
depends_on 'json-c'
depends_on 'sqlite'
def install
args = std_cmake_args + ['..']
cd 'build' do
system 'cmake', *args
system 'make'
system 'make install'
end
end
end
|