mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-01-02 09:00:20 +00:00
45 lines
1.3 KiB
Bash
45 lines
1.3 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
|
|
share/libalpm/hooks/update-libcompiler-rt.hook
|
|
share/libalpm/scripts/update-libcompiler-rt
|
|
"
|
|
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/bash
|
|
if [[ -e "$RT_OPT_DIR" ]]; then
|
|
find $RT_OPT_DIR -type f ! -name "lib*-$TERMUX_ARCH-*" -exec ln -sf "{}" $RT_PATH \;
|
|
fi
|
|
exit 0
|
|
EOF
|
|
if [[ "$TERMUX_PACKAGE_FORMAT" == "pacman" ]]; then
|
|
echo "post_install" > postupg
|
|
fi
|
|
|
|
cat <<- EOF > ./prerm
|
|
#!$TERMUX_PREFIX/bin/sh
|
|
find $RT_PATH -type l ! -name "lib*-$TERMUX_ARCH-*" -exec rm -rf "{}" \;
|
|
exit 0
|
|
EOF
|
|
}
|