musikcube/script/patch-rpath.sh

42 lines
1.1 KiB
Bash
Raw Normal View History

#!/bin/sh
PLATFORM=$(uname)
if [ "$PLATFORM" = 'Linux' ]; then
echo "[patch-rpath] patching Linux .so files..."
chmod -x ./bin/lib/*
chmod -x ./bin/plugins/*
chmod -x ./bin/*.so
# update the RPATH so libraries in libs/ can discover each other,
# and plugins can discover themselves, and libs/ (but not the
# other way around)
FILES="./bin/lib/*"
for f in $FILES
do
patchelf --set-rpath "\$ORIGIN" "$f"
done
FILES="./bin/plugins/*.so"
for f in $FILES
do
patchelf --set-rpath "\$ORIGIN:\$ORIGIN/../lib" "$f"
done
patchelf --set-rpath "\$ORIGIN:\$ORIGIN/lib" bin/musikcube
patchelf --set-rpath "\$ORIGIN:\$ORIGIN/lib" bin/musikcubed
fi
2022-12-14 05:07:07 +00:00
if [ "$PLATFORM" = 'Darwin' ]; then
echo "[patch-rpath] patching macOS binaries..."
SOURCE_DIR=$1
install_name_tool -add_rpath "@executable_path/" $SOURCE_DIR/bin/musikcube
install_name_tool -add_rpath "@executable_path/lib" $SOURCE_DIR/bin/musikcube
install_name_tool -add_rpath "@executable_path/" $SOURCE_DIR/bin/musikcubed
install_name_tool -add_rpath "@executable_path/lib" $SOURCE_DIR/bin/musikcubed
2022-12-14 05:07:07 +00:00
fi
exit 0