diff options
author | Leo <thinkabit.ukim@gmail.com> | 2020-09-03 03:25:05 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2020-09-03 03:26:39 -0300 |
commit | b4dc8a38716a7a4fb4c754f2c4a691c0e818a616 (patch) | |
tree | d615ec16b0b4a90942f98ae2bb3a844c5905d366 | |
parent | a9588a968335d3c294feae1b69128dc077c125e2 (diff) | |
download | aports-b4dc8a38716a7a4fb4c754f2c4a691c0e818a616.tar.gz aports-b4dc8a38716a7a4fb4c754f2c4a691c0e818a616.tar.bz2 aports-b4dc8a38716a7a4fb4c754f2c4a691c0e818a616.tar.xz |
testing/libtbb: modernize
- Add options="!check" because of the lack of a testsuite
- make -dev subpkg depend on linux-headers for linux/futex.h
- make -dev subpkg depend on libtbb as soname is screwed up
so it doesn't depend on it automatically
- Remove superfluous and opionated part of pkgdesc
-rw-r--r-- | testing/libtbb/APKBUILD | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/testing/libtbb/APKBUILD b/testing/libtbb/APKBUILD index 74291b4574..84d7b10171 100644 --- a/testing/libtbb/APKBUILD +++ b/testing/libtbb/APKBUILD @@ -2,12 +2,14 @@ # Maintainer: David Huffman <storedbox@outlook.com> pkgname=libtbb pkgver=2020.3 -pkgrel=0 -pkgdesc="IntelĀ® TBB, a widely used C++ template library for task parallelism" +pkgrel=1 +pkgdesc="C++ template library for task parallelism" +options="!check" # No testsuite url="https://github.com/oneapi-src/oneTBB" arch="all" license="GPL-2.0-only" -makedepends="linux-headers cmake" +depends_dev="linux-headers libtbb" +makedepends="$depends_dev cmake" subpackages="$pkgname-dev" source="tbb-$pkgver.tar.gz::https://github.com/oneapi-src/oneTBB/archive/v$pkgver.tar.gz musl.patch |