1
0
Fork 0
mirror of https://github.com/xHyroM/void-packages.git synced 2024-09-20 04:23:19 +02:00
void-packages/common/hooks/post-install/13-pkg-config-clean-xbps-cross-base-ref.sh

24 lines
618 B
Bash
Raw Normal View History

2024-03-29 08:12:19 +01:00
# This hook removes reference to $XBPS_CROSS_BASE in
# /usr/{lib,share}/pkgconfig/*.pc
#
# We don't touch /usr/bin/*-config since there're other information that
# references $XBPS_CROSS_BASE
hook() {
if [ -z "$CROSS_BUILD" ]; then
return 0
fi
for f in "$PKGDESTDIR"/usr/lib/pkgconfig/*.pc \
"$PKGDESTDIR"/usr/share/pkgconfig/*.pc
do
if [ -f "$f" ]; then
# Sample sed script
# s,/usr/armv7l-linux-musleabihf/usr,/usr,g
# trailing /usr to avoid clashing with
# other $XBPS_CROSS_BASE and $XBPS_CROSS_TRIPLET.
sed -i --follow-symlinks \
-e "s,$XBPS_CROSS_BASE/usr,/usr,g" "$f"
fi
done
}