From a458b16e141836acce21e02a953209b93271d822 Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Thu, 14 May 2020 10:14:06 +0200 Subject: advertise-provided-libraries.PKGBUILDpatch: do not advertise by suffix only --- advertise-provided-libraries.PKGBUILDpatch | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'advertise-provided-libraries.PKGBUILDpatch') diff --git a/advertise-provided-libraries.PKGBUILDpatch b/advertise-provided-libraries.PKGBUILDpatch index 392c321e..b7d2203a 100644 --- a/advertise-provided-libraries.PKGBUILDpatch +++ b/advertise-provided-libraries.PKGBUILDpatch @@ -2,7 +2,19 @@ if printf '%s\n' "${arch[@]}" | grep -qvxF any; then if [ -d "${pkgdir}/usr/lib" ]; then provides+=( $( - find "${pkgdir}/usr/lib" -name '*.so' -printf '%f\n' + find "${pkgdir}/usr/lib" \ + -name '*.so' -printf '%p\n' \ + | while read -r lib; do + if ! LC_ALL=C readelf -h "$fn" 2>/dev/null | grep -q '.*Type:.*DYN (Shared object file).*'; then + # no shared object + continue + fi + if ! LC_ALL=C readelf -d "$fn" 2>/dev/null | grep -q '.*Library soname: \[.*\].*'; then + # not versioned + continue + fi + printf '%s\n' "${lib##*/}" + done ) ) fi -- cgit v1.2.3-54-g00ecf