homebrew-core/Formula/tbb.rb

23 lines
808 B
Ruby
Raw Normal View History

2010-04-12 20:52:53 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Tbb < Formula
2010-04-12 20:52:53 +00:00
homepage 'http://www.threadingbuildingblocks.org/'
url 'http://threadingbuildingblocks.org/sites/default/files/software_releases/source/tbb41_20121003oss_src.tgz'
sha1 '072333068fa278635582846eaaa22d51c0100e09'
version '4.1u1'
2010-04-12 20:52:53 +00:00
def install
# Intel sets varying O levels on each compile command.
ENV.no_optimization
2010-04-12 20:52:53 +00:00
# Override build prefix so we can copy the dylibs out of the same place
# no matter what system we're on, and use our compilers.
args = ['tbb_build_prefix=BUILDPREFIX',
"CONLY=#{ENV.cc}",
"CPLUS=#{ENV.cxx}"]
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