libraries/libtbb: Updated for version 3.0_20110315oss.
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
This commit is contained in:
parent
aa24539599
commit
834e79ae02
|
@ -5,3 +5,6 @@ without having to be a threading expert. Threading Building Blocks is
|
|||
not just a threads-replacement library. It represents a higher-level,
|
||||
task-based parallelism that abstracts platform details and threading
|
||||
mechanisms for scalability and performance.
|
||||
|
||||
Note: This library is only supported on Intel(R) Pentium(R) 4, Itanium(R),
|
||||
Non Intel(R) processors compatible with the above processors.
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
|
||||
# Written by João Felipe Santos (joao.eel@gmail.com)
|
||||
# Copyright (c) 2010 João Felipe Santos
|
||||
# Copyright (c) 2011 Ozan Türkyılmaz
|
||||
# Maintained by Ozan Türkyılmaz <ozan.turkyilmaz@gmail.com>
|
||||
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
|
@ -25,16 +26,14 @@
|
|||
# THE SOFTWARE.
|
||||
|
||||
PRGNAM=libtbb
|
||||
VERSION=2.2_20090809oss
|
||||
VERSION=3.0_20110315oss
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
# Automatically determine the architecture we're building on:
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
# Unless $ARCH is already set, use uname -m for all other archs:
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
@ -61,9 +60,9 @@ set -e
|
|||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf tbb22_20090809oss
|
||||
tar xvf $CWD/tbb22_20090809oss_src.tgz
|
||||
cd tbb22_20090809oss
|
||||
rm -rf tbb$(echo $VERSION | sed 's/\.//')oss
|
||||
tar xvf $CWD/tbb$(echo $VERSION | sed 's/\.//')_src.tgz
|
||||
cd tbb$(echo $VERSION | sed 's/\.//')
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
PRGNAM="libtbb"
|
||||
VERSION="2.2_20090809oss"
|
||||
VERSION="3.0_20110315oss"
|
||||
HOMEPAGE="http://www.threadingbuildingblocks.org/"
|
||||
DOWNLOAD="http://www.threadingbuildingblocks.org/uploads/77/142/2.2/tbb22_20090809oss_src.tgz"
|
||||
MD5SUM="c621053887c7ee86932da43e2deb3bff"
|
||||
DOWNLOAD="http://threadingbuildingblocks.org/uploads/77/167/3.0%20update%206/tbb30_20110315oss_src.tgz"
|
||||
MD5SUM="1e749c76e19673a05f96e70c41f18ff8"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Ozan Türkyılmaz"
|
||||
EMAIL="ozan.turkyilmaz@gmail.com"
|
||||
APPROVED="rworkman"
|
||||
APPROVED="rworkman,Niels Horn"
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
# make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':'.
|
||||
|
||||
|-----handy-ruler------------------------------------------------|
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
libtbb: libtbb (Intel Threading Building Blocks)
|
||||
libtbb:
|
||||
libtbb: Intel® Threading Building Blocks (TBB) offers a rich and
|
||||
|
|
Loading…
Reference in New Issue