mirror of
https://github.com/termux/termux-packages.git
synced 2024-12-12 00:10:52 +00:00
2b65bc0e67
We use true or false for other bool build variables. Let's be consistent. Change does not have an effect on build scripts. %ci:no-build
41 lines
1.2 KiB
Bash
41 lines
1.2 KiB
Bash
TERMUX_SUBPKG_DESCRIPTION="Compiler runtime libraries for clang"
|
|
TERMUX_SUBPKG_INCLUDE="
|
|
lib/clang/*/bin/asan_device_setup
|
|
lib/clang/*/bin/hwasan_symbolize
|
|
lib/clang/*/include/fuzzer/FuzzedDataProvider.h
|
|
lib/clang/*/include/profile/InstrProfData.inc
|
|
lib/clang/*/include/sanitizer/
|
|
lib/clang/*/include/xray/
|
|
lib/clang/*/lib/linux/
|
|
lib/clang/*/share/asan_ignorelist.txt
|
|
lib/clang/*/share/cfi_ignorelist.txt
|
|
lib/clang/*/share/hwasan_ignorelist.txt
|
|
"
|
|
TERMUX_SUBPKG_DEPEND_ON_PARENT=false
|
|
TERMUX_SUBPKG_DEPENDS=libc++
|
|
TERMUX_SUBPKG_CONFLICTS="ndk-multilib (<< 23b-6)"
|
|
|
|
termux_step_create_subpkg_debscripts() {
|
|
local RT_OPT_DIR=$TERMUX_PREFIX/opt/ndk-multilib/cross-compiler-rt
|
|
local RT_PATH=$TERMUX_PREFIX/lib/clang/$LLVM_MAJOR_VERSION/lib/linux
|
|
|
|
cat <<- EOF > ./triggers
|
|
interest-noawait $RT_OPT_DIR
|
|
EOF
|
|
|
|
cat <<- EOF > ./postinst
|
|
#!$TERMUX_PREFIX/bin/sh
|
|
find $RT_PATH -type l ! -name "libclang_rt*$TERMUX_ARCH*" -exec rm -rf "{}" \;
|
|
if [ -e $RT_OPT_DIR ]; then
|
|
find $RT_OPT_DIR -type f ! -name "libclang_rt*$TERMUX_ARCH*" -exec ln -sf "{}" $RT_PATH \;
|
|
fi
|
|
exit 0
|
|
EOF
|
|
|
|
cat <<- EOF > ./prerm
|
|
#!$TERMUX_PREFIX/bin/sh
|
|
find $RT_PATH -type l ! -name "libclang_rt*$TERMUX_ARCH*" -exec rm -rf "{}" \;
|
|
exit 0
|
|
EOF
|
|
}
|