2010-04-12 20:52:53 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Tbb < Formula
|
2011-08-29 17:22:55 +00:00
|
|
|
url 'http://www.threadingbuildingblocks.org/uploads/78/172/3.0%20update%208/tbb30_221oss_src.tgz'
|
|
|
|
version '30_221'
|
2010-04-12 20:52:53 +00:00
|
|
|
homepage 'http://www.threadingbuildingblocks.org/'
|
2011-08-29 17:22:55 +00:00
|
|
|
sha1 '79c6b347f457e3176a5beae598a14b3a25bac4a0'
|
2010-04-12 20:52:53 +00:00
|
|
|
|
|
|
|
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']
|
2011-03-18 17:30:47 +00:00
|
|
|
args << (MacOS.prefer_64_bit? ? "arch=intel64" : "arch=ia32")
|
2010-04-12 20:52:53 +00:00
|
|
|
|
|
|
|
system "make", *args
|
|
|
|
lib.install Dir['build/BUILDPREFIX_release/*.dylib']
|
|
|
|
include.install 'include/tbb'
|
|
|
|
end
|
|
|
|
end
|