fix pkg, ffmpeg
All checks were successful
eden-license / license-header (pull_request) Successful in 19s
All checks were successful
eden-license / license-header (pull_request) Successful in 19s
Signed-off-by: crueter <crueter@eden-emu.dev>
This commit is contained in:
parent
e285e82781
commit
a8e8464a26
2 changed files with 11 additions and 11 deletions
|
@ -5,8 +5,10 @@
|
|||
cd build
|
||||
APP=./bin/eden.app
|
||||
|
||||
macdeployqt "$APP"
|
||||
macdeployqt "$APP" -always-overwrite
|
||||
cp -r $APP bin/old-eden.app
|
||||
|
||||
macdeployqt "$APP" -verbose=2
|
||||
macdeployqt "$APP" -always-overwrite -verbose=2
|
||||
|
||||
# FixMachOLibraryPaths
|
||||
find "$APP/Contents/Frameworks" ""$APP/Contents/MacOS"" -type f \( -name "*.dylib" -o -perm +111 \) | while read file; do
|
||||
|
@ -24,11 +26,9 @@ find "$APP/Contents/Frameworks" ""$APP/Contents/MacOS"" -type f \( -name "*.dyli
|
|||
fi
|
||||
fi
|
||||
done
|
||||
codesign --deep --force --verify --verbose --sign - "$APP"
|
||||
|
||||
ZIP_NAME="eden-macos.zip"
|
||||
codesign --deep --force --verbose -s - "$APP"
|
||||
|
||||
mkdir -p artifacts
|
||||
|
||||
mv $APP .
|
||||
7z a -tzip "$ZIP_NAME" eden.app
|
||||
mv "$ZIP_NAME" artifacts/
|
||||
tar czf artifacts/eden.tar.zst "$APP"
|
||||
mv artifacts ..
|
||||
|
|
|
@ -52,10 +52,10 @@ CMAKE_DEPENDENT_OPTION(YUZU_USE_BUNDLED_QT "Download bundled Qt binaries" "${MSV
|
|||
option(ENABLE_WEB_SERVICE "Enable web services (telemetry, etc.)" ON)
|
||||
option(ENABLE_WIFI_SCAN "Enable WiFi scanning" OFF)
|
||||
|
||||
if (${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD")
|
||||
option(YUZU_USE_BUNDLED_FFMPEG "Download/Build bundled FFmpeg" OFF)
|
||||
if (${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD" OR APPLE)
|
||||
option(YUZU_USE_BUNDLED_FFMPEG "Download/Build bundled FFmpeg" OFF)
|
||||
else()
|
||||
option(YUZU_USE_BUNDLED_FFMPEG "Download/Build bundled FFmpeg" ON)
|
||||
option(YUZU_USE_BUNDLED_FFMPEG "Download/Build bundled FFmpeg" ON)
|
||||
endif()
|
||||
|
||||
if (${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue