mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-19 06:15:26 +00:00
Mac bundle: no more Marble
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
2ca8d664d7
commit
fcfa05b134
1 changed files with 8 additions and 7 deletions
|
@ -24,7 +24,7 @@ LIBRARY_PATH=${DIR}/install-root/lib make install
|
|||
|
||||
# now adjust a few references that macdeployqt appears to miss
|
||||
EXECUTABLE=Subsurface.app/Contents/MacOS/Subsurface
|
||||
for i in libssh libssrfmarblewidget libgit2 libGrantlee_TextDocument.dylib libGrantlee_Templates.dylib; do
|
||||
for i in libssh libgit2 libGrantlee_TextDocument.dylib libGrantlee_Templates.dylib; do
|
||||
OLD=$(otool -L ${EXECUTABLE} | grep $i | cut -d\ -f1 | tr -d "\t")
|
||||
if [ ! -z ${OLD} ] ; then
|
||||
# copy the library into the bundle and make sure its id and the reference to it are correct
|
||||
|
@ -46,12 +46,13 @@ for i in ${RPATH}; do
|
|||
install_name_tool -change @rpath/$i @executable_path/../Frameworks/$i ${EXECUTABLE}
|
||||
done
|
||||
|
||||
# and now replace @rpath references in libssrfmarblewidget
|
||||
MARBLELIB=$(ls Subsurface.app/Contents/Frameworks/libssrfmarblewidget*dylib)
|
||||
RPATH=$(otool -L ${MARBLELIB} | grep rpath | cut -d\ -f1 | tr -d "\t" | cut -b 8- )
|
||||
for i in ${RPATH}; do
|
||||
install_name_tool -change @rpath/$i @executable_path/../Frameworks/$i ${MARBLELIB}
|
||||
done
|
||||
# no more Marble
|
||||
# # and now replace @rpath references in libssrfmarblewidget
|
||||
# MARBLELIB=$(ls Subsurface.app/Contents/Frameworks/libssrfmarblewidget*dylib)
|
||||
# RPATH=$(otool -L ${MARBLELIB} | grep rpath | cut -d\ -f1 | tr -d "\t" | cut -b 8- )
|
||||
# for i in ${RPATH}; do
|
||||
# install_name_tool -change @rpath/$i @executable_path/../Frameworks/$i ${MARBLELIB}
|
||||
# done
|
||||
|
||||
# next deal with libGrantlee
|
||||
LIBG=$(ls Subsurface.app/Contents/Frameworks/libGrantlee_Templates*dylib)
|
||||
|
|
Loading…
Add table
Reference in a new issue