mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-02-11 12:20:52 +00:00
Remove patch file which was fixed in upstream
fe907dcc02 (diff-93a059393f5350e47303a2426e2c5390e8c587b8a7533eae2c58cd6b6ed2e9d5R68)
Also, update home page and source link to new repository.
22 lines
846 B
Bash
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"
|
|
}
|