aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/tbb.rb
blob: ce2a67e808142cb64a39f19050dde9a2d1e38ee8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'formula'

class Tbb <Formula
  url 'http://www.threadingbuildingblocks.org/uploads/77/148/3.0/tbb30_20100310oss_src.tgz'
  version '30_20100310'
  homepage 'http://www.threadingbuildingblocks.org/'
  md5 'a7dc9b6aa6f33e6f6228cdc26c4a0899'

  def install
    # Override build prefix so we can copy the dylibs out of the same place
    # no matter what system we're on
    args = ['tbb_build_prefix=BUILDPREFIX']
    args << (snow_leopard_64? ? "arch=intel64" : "arch=ia32")

    system "make", *args
    lib.install Dir['build/BUILDPREFIX_release/*.dylib']
    include.install 'include/tbb'
  end
end