PKGBUILDs/extra/intel-tbb/PKGBUILD

41 lines
1.4 KiB
Bash
Raw Normal View History

2018-12-30 14:19:24 +00:00
# Maintainer: Felix Yan <felixonmars@archlinux.org>
2017-03-15 12:39:23 +00:00
# Contributor: Stéphane Gaudreault <stephane@archlinux.org>
2015-04-26 23:15:07 +00:00
# Contributor: Thomas Dziedzic < gostrc at gmail >
# Contributor: Denis Martinez <deuns.martinez AT gmail.com>
2019-10-16 00:23:09 +00:00
# Contributor: Bogdan Burlacu <bogdan.burlacu AT pm.me>
2015-04-26 23:15:07 +00:00
2015-10-27 04:09:40 +00:00
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# Romain Reignier <rom.reignier AT gmail.com>
2018-09-22 00:36:44 +00:00
# - add specfic CXXFLAGS for ARM
2015-04-26 23:15:07 +00:00
pkgname=intel-tbb
2020-03-30 22:06:23 +00:00
pkgver=2020.2
2019-12-18 22:42:54 +00:00
pkgrel=1
2015-04-26 23:15:07 +00:00
pkgdesc='High level abstract threading library'
2017-12-02 21:06:56 +00:00
arch=(x86_64)
2019-05-25 19:19:22 +00:00
url='https://www.threadingbuildingblocks.org/'
2016-03-03 19:53:44 +00:00
license=(GPL)
depends=(gcc-libs)
2019-10-16 00:23:09 +00:00
makedepends=(cmake inetutils)
2019-12-18 22:42:54 +00:00
source=($pkgname-$pkgver.tar.gz::https://github.com/intel/tbb/archive/v$pkgver.tar.gz)
2020-03-30 22:06:23 +00:00
sha256sums=('4804320e1e6cbe3a5421997b52199e3c1a3829b2ecb6489641da4b8e32faf500')
2015-04-26 23:15:07 +00:00
build() {
2020-03-30 22:06:23 +00:00
cd oneTBB-$pkgver
2018-09-22 00:36:44 +00:00
[[ $CARCH != "aarch64" ]] && CXXFLAGS+=" -DTBB_USE_GCC_BUILTINS=1 -D__TBB_64BIT_ATOMICS=0"
2015-10-27 04:09:40 +00:00
[[ $CARCH == "aarch64" ]] && CXXFLAGS+=" -DTBB_USE_GCC_BUILTINS=1 -D__TBB_64BIT_ATOMICS=1"
2015-04-26 23:15:07 +00:00
make
}
package() {
2020-03-30 22:06:23 +00:00
cd oneTBB-$pkgver
2015-10-01 23:34:37 +00:00
install -d "$pkgdir"/usr/lib
install -m755 build/linux_*/*.so* "$pkgdir"/usr/lib
install -d "$pkgdir"/usr/include
cp -a include/tbb "$pkgdir"/usr/include
2019-10-16 00:23:09 +00:00
cmake \
-DINSTALL_DIR="$pkgdir"/usr/lib/cmake/TBB \
-DSYSTEM_NAME=Linux -DTBB_VERSION_FILE="$pkgdir"/usr/include/tbb/tbb_stddef.h \
-P cmake/tbb_config_installer.cmake
2015-04-26 23:15:07 +00:00
}