mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
extra/intel-tbb to 4.4_20160128-1
This commit is contained in:
parent
7d32d05606
commit
d94473e871
1 changed files with 11 additions and 10 deletions
|
@ -10,26 +10,27 @@
|
||||||
buildarch=12
|
buildarch=12
|
||||||
|
|
||||||
pkgname=intel-tbb
|
pkgname=intel-tbb
|
||||||
pkgver=4.4_20151115
|
pkgver=4.4_20160128
|
||||||
_dir=tbb${pkgver/\./}oss
|
_tag=tbb${pkgver/\./}oss
|
||||||
pkgrel=2
|
_file=${_tag}_src_0.tgz
|
||||||
|
pkgrel=1
|
||||||
pkgdesc='High level abstract threading library'
|
pkgdesc='High level abstract threading library'
|
||||||
arch=('i686' 'x86_64')
|
arch=(i686 x86_64)
|
||||||
url='http://www.threadingbuildingblocks.org/'
|
url='http://www.threadingbuildingblocks.org/'
|
||||||
license=('GPL')
|
license=(GPL)
|
||||||
depends=('gcc-libs')
|
depends=(gcc-libs)
|
||||||
source=("http://threadingbuildingblocks.org/sites/default/files/software_releases/source/tbb${pkgver/\./}oss_src.tgz")
|
source=(http://threadingbuildingblocks.org/sites/default/files/software_releases/source/$_file)
|
||||||
sha1sums=('5d81fe397e97e74a5645ce30c5b218852c799f07')
|
sha1sums=('80707e277f69d9b20eeebdd7a5f5331137868ce1')
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd $_dir
|
cd $_tag
|
||||||
[[ $CARCH == "armv7h" ]] && CXXFLAGS+=" -DTBB_USE_GCC_BUILTINS=1 -D__TBB_64BIT_ATOMICS=0"
|
[[ $CARCH == "armv7h" ]] && CXXFLAGS+=" -DTBB_USE_GCC_BUILTINS=1 -D__TBB_64BIT_ATOMICS=0"
|
||||||
[[ $CARCH == "aarch64" ]] && CXXFLAGS+=" -DTBB_USE_GCC_BUILTINS=1 -D__TBB_64BIT_ATOMICS=1"
|
[[ $CARCH == "aarch64" ]] && CXXFLAGS+=" -DTBB_USE_GCC_BUILTINS=1 -D__TBB_64BIT_ATOMICS=1"
|
||||||
make
|
make
|
||||||
}
|
}
|
||||||
|
|
||||||
package() {
|
package() {
|
||||||
cd $_dir
|
cd $_tag
|
||||||
install -d "$pkgdir"/usr/lib
|
install -d "$pkgdir"/usr/lib
|
||||||
install -m755 build/linux_*/*.so* "$pkgdir"/usr/lib
|
install -m755 build/linux_*/*.so* "$pkgdir"/usr/lib
|
||||||
install -d "$pkgdir"/usr/include
|
install -d "$pkgdir"/usr/include
|
||||||
|
|
Loading…
Reference in a new issue