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

class Libcppa < Formula
  homepage 'http://libcppa.blogspot.it'
  url 'http://github.com/Neverlord/libcppa/archive/V0.9.3.tar.gz'
  sha1 'b9fce68bc4e5688cc75cfc9add5ec1feb105ab7d'

  bottle do
    cellar :any
    sha1 "4527da9b1c0e6a60c13cf7a35540fceaa2caa3b2" => :mavericks
    sha1 "cee8d1916bcd7eebfc151a6712e1efd58d54c4c1" => :mountain_lion
    sha1 "d30dbe35371a62ddd9f34ada0210a3770d05191d" => :lion
  end

  depends_on 'cmake' => :build

  needs :cxx11

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

  def install
    ENV.cxx11

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

    args << '--with-opencl' if build.with? 'opencl'
    args << '--no-examples' if build.without? 'examples'

    system "./configure", *args
    system "make"
    system "make", "test"
    system "make", "install"
  end
end