add intel-tbb Intel Threading Building Blocks Library version bump and check

This commit is contained in:
groni
2016-03-08 15:44:24 +01:00
parent 30570e7a2f
commit 81e43f85d7
8 changed files with 220 additions and 2 deletions
@@ -0,0 +1,19 @@
#!/bin/bash
DESTDIR=$1
mkdir -p $DESTDIR/usr/{lib,include}
pushd build/obj_release
for file in libtbb{,malloc}; do
install -p -D -m 755 ${file}.so.2 $DESTDIR/usr/lib/
ln -s $file.so.2 $DESTDIR/usr/lib/$file.so
done
popd
pushd include
find tbb -type f -name \*.h -exec \
install -p -D -m 644 {} $DESTDIR/usr/include/{} \
\;
popd