aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/tbb.rb
blob: 4fef0d905bd6cd612e270e5c4c7bd965afdae7fe (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/78/162/3.0%20update%204/tbb30_127oss_src.tgz'
  version '30_127'
  homepage 'http://www.threadingbuildingblocks.org/'
  md5 'c911f74f3d207358bb5554614b276c39'

  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