diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-10-07 12:46:41 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-10-08 12:19:39 -0700 |
commit | ec7422feb5bb35cd8a456a67309df15c9b7ad59e (patch) | |
tree | cef9d6a8d5f4e64cc8704e41bb9f7fe68266d328 /packaging/macosx/make-package.sh | |
parent | 21f1cf09f7de90080951dfb96d5ef638865624dc (diff) | |
download | subsurface-ec7422feb5bb35cd8a456a67309df15c9b7ad59e.tar.gz |
build-system: remove Grantlee from the packaging scripts
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'packaging/macosx/make-package.sh')
-rwxr-xr-x | packaging/macosx/make-package.sh | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/packaging/macosx/make-package.sh b/packaging/macosx/make-package.sh index c1cafe177..c29aa672e 100755 --- a/packaging/macosx/make-package.sh +++ b/packaging/macosx/make-package.sh @@ -36,7 +36,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 libgit2 libGrantlee_TextDocument.dylib libGrantlee_Templates.dylib; do +for i in libgit2 ; do OLD=$(otool -L ${EXECUTABLE} | grep $i | cut -d\ -f1 | tr -d "\t") if [[ ! -z ${OLD} && ! -f Subsurface.app/Contents/Frameworks/$(basename ${OLD}) ]] ; then # copy the library into the bundle and make sure its id and the reference to it are correct @@ -78,26 +78,6 @@ for i in ${RPATH}; do install_name_tool -change @rpath/$i @executable_path/../Frameworks/$i ${EXECUTABLE} done -# next deal with libGrantlee -LIBG=$(ls Subsurface.app/Contents/Frameworks/libGrantlee_Templates*dylib) -for i in QtScript.framework/Versions/5/QtScript QtCore.framework/Versions/5/QtCore ; do - install_name_tool -change @rpath/$i @executable_path/../Frameworks/$i ${LIBG} -done - -# clean up shared library dependency in the Grantlee plugins -for i in Subsurface.app/Contents/PlugIns/grantlee/5.1/*.so; do - OLD=$(otool -L $i | grep libGrantlee_Templates | cut -d\ -f1 | tr -d "\t") - SONAME=$(basename $OLD ) - install_name_tool -change ${OLD} @executable_path/../Frameworks/${SONAME} $i; - OLD=$(otool -L $i | grep QtCore | cut -d\ -f1 | tr -d "\t") - install_name_tool -change ${OLD} @executable_path/../Frameworks/QtCore.framework/QtCore $i; - mv $i Subsurface.app/Contents/PlugIns/grantlee -done -rmdir Subsurface.app/Contents/PlugIns/grantlee/5.1 -pushd Subsurface.app/Contents/PlugIns/grantlee -ln -s . 5.1 -popd - if [ "$1" = "-nodmg" ] ; then exit 0 fi |