blob: 2679d61e3ed144be594216a10765adbf7b55352f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
require 'formula'
class Io < Formula
homepage 'http://iolanguage.com/'
url 'https://github.com/stevedekorte/io/archive/2013.12.04.tar.gz'
sha1 '47d9a3e7a8e14c9fbe3b376e4967bb55f6c68aed'
head 'https://github.com/stevedekorte/io.git'
option 'without-addons', 'Build without addons'
depends_on 'cmake' => :build
depends_on :python => :recommended
depends_on 'libevent'
depends_on 'libffi'
depends_on 'ossp-uuid'
depends_on 'pcre'
depends_on 'yajl'
depends_on 'xz'
# Used by Bignum add-on
depends_on 'gmp' unless build.include? 'without-addons'
# Used by Fonts add-on
depends_on :freetype unless build.include? 'without-addons'
fails_with :clang do
build 421
cause <<-EOS.undent
make never completes. see:
https://github.com/stevedekorte/io/issues/223
EOS
end
def install
ENV.j1
if build.without? 'addons'
inreplace "CMakeLists.txt",
'add_subdirectory(addons)',
'#add_subdirectory(addons)'
end
if build.without? 'python'
inreplace "addons/CMakeLists.txt",
'add_subdirectory(Python)',
'#add_subdirectory(Python)'
end
mkdir 'buildroot' do
system "cmake", "..", *std_cmake_args
system 'make'
output = %x[./_build/binaries/io ../libs/iovm/tests/correctness/run.io]
if $?.exitstatus != 0
opoo "Test suite not 100% successful:\n#{output}"
else
ohai "Test suite ran successfully:\n#{output}"
end
system 'make install'
end
end
end
|