Files
termux-packages/packages/libtbb/build.sh
termux-pacman-bot 7238b9395a bump(main/libtbb): 2022.3.0
Remove patch file which was fixed in upstream
fe907dcc02 (diff-93a059393f5350e47303a2426e2c5390e8c587b8a7533eae2c58cd6b6ed2e9d5R68)

Also, update home page and source link to new repository.
2025-10-30 04:39:27 +00:00

22 lines
846 B
Bash

TERMUX_PKG_HOMEPAGE=https://uxlfoundation.github.io/oneTBB/
TERMUX_PKG_DESCRIPTION="oneAPI Threading Building Blocks"
TERMUX_PKG_LICENSE="Apache-2.0"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="2022.3.0"
TERMUX_PKG_SRCURL=https://github.com/uxlfoundation/oneTBB/archive/refs/tags/v${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=01598a46c1162c27253a0de0236f520fd8ee8166e9ebb84a4243574f88e6e50a
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_DEPENDS="libc++"
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
-DTBB_STRICT=OFF
-DTBB_TEST=OFF
"
termux_step_pre_configure() {
# Many symbols in the linker version scripts are undefined because link time
# optimization (-flto=thin) removes them. Suppress errors with lld >= 17 due to
# these undefined symbols.
# See https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=274337
LDFLAGS+=" -Wl,--undefined-version"
}