aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libcppa.rb
blob: 32082609e0c0b7299b0a86e85db3d400dedd3983 (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
require 'formula'

class Libcppa < Formula
  homepage 'http://libcppa.blogspot.it'
  url 'https://github.com/Neverlord/libcppa/archive/V0.7.1.tar.gz'
  sha1 '0f1f685e94bfa16625370b978ff26deaf799b94e'

  depends_on :macos => :lion
  depends_on 'cmake' => :build

  option 'with-opencl', 'Build with OpenCL actors'

  def caveats
      "Libcppa requires a C++11 compliant compiler"
  end

  fails_with :gcc do
    cause 'libcppa requires a C++11 compliant compiler.'
  end

  fails_with :llvm do
    cause 'libcppa requires a C++11 compliant compiler.'
  end

  def install
    args = %W[
      --prefix=#{prefix}
      --build-static
      --disable-context-switching
    ]

    if build.with? 'opencl'
      args << "--with-opencl"
    end

    system "./configure", *args
    system "make"
    system "make", "test"
    system "make", "install"
  end
end
f='#n139'>139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175