homebrew-core/Formula/tbb.rb
Oliver Erxleben a5d05444a5 tbb 4.1 update 1
Closes Homebrew/homebrew#15624.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-10-23 13:51:02 -07:00

22 lines
795 B
Ruby

require 'formula'
class Tbb < Formula
homepage 'http://www.threadingbuildingblocks.org/'
url 'http://threadingbuildingblocks.org/uploads/77/189/4.1%20update%201/tbb41_20121003oss_src.tgz'
sha1 '55dc1684eefe7933955c9fe89313267de548a2aa'
version '4.1u1'
def install
# Intel sets varying O levels on each compile command.
ENV.no_optimization
# 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}"]
args << (MacOS.prefer_64_bit? ? "arch=intel64" : "arch=ia32")
system "make", *args
lib.install Dir['build/BUILDPREFIX_release/*.dylib']
include.install 'include/tbb'
end
end