From 37f2eadb80623c8f3145334c1704d117a43935eb Mon Sep 17 00:00:00 2001 From: Lilith McMullen Date: Mon, 22 Jan 2024 18:40:09 -0800 Subject: [PATCH] break out bundledeps make targets --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8b468d9..f9cfac9 100644 --- a/Makefile +++ b/Makefile @@ -11,11 +11,15 @@ build: package_macos: fyne package -os darwin -name $(app_name) -appVersion $(app_version) -icon $(icon_path) -bundledeps_macos: +bundledeps_macos_homebrew: dylibbundler -od -b -x ./Supersonic.app/Contents/MacOS/supersonic -d ./Supersonic.app/Contents/Frameworks/ -p @executable_path/../Frameworks/ ./copy_python_dep_osx.sh codesign --force --deep --preserve-metadata=entitlements,requirements,flags,runtime --sign - "./Supersonic.app/Contents/MacOS/supersonic" +bundledeps_macos_macports: + dylibbundler -od -b -x ./Supersonic.app/Contents/MacOS/supersonic -d ./Supersonic.app/Contents/Frameworks/ -p @executable_path/../Frameworks/ + codesign --force --deep --preserve-metadata=entitlements,requirements,flags,runtime --sign - "./Supersonic.app/Contents/MacOS/supersonic" + bundledeps_macos_highsierra: mkdir ./Supersonic.app/Contents/Frameworks cp -R res/libs/mac_x64/mpv/* ./Supersonic.app/Contents/Frameworks