post-install: warn if cross wrapper not cleared

This commit is contained in:
Đoàn Trần Công Danh 2020-05-23 12:29:12 +07:00 committed by Danh Doan
parent eef02a2b84
commit d7f942b709

View file

@ -0,0 +1,21 @@
# This hook warns if :
# - Any text file /usr/{bin,lib,libexec,share} contains $XBPS_CROSS_BASE
# - Any text file /usr/{bin,lib,libexec,share} contains $XBPS_WRAPPERDIR
hook() {
if [ -z "$CROSS_BUILD" ]; then
return 0
fi
for d in bin lib libexec share; do
for f in $PKGDESTDIR/usr/$d/* $PKGDESTDIR/usr/$d/**/*; do
case "$(file -bi "$f")" in
text/*) if grep -q -e "$XBPS_CROSS_BASE" \
-e "$XBPS_WRAPPERDIR" "$f"; then
msg_warn "${f#$PKGDESTDIR} has cross cruft\n"
fi
;;
esac
done
done
return 0;
}