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
|
cd build
|
||||||
APP=./bin/eden.app
|
APP=./bin/eden.app
|
||||||
|
|
||||||
macdeployqt "$APP"
|
cp -r $APP bin/old-eden.app
|
||||||
macdeployqt "$APP" -always-overwrite
|
|
||||||
|
macdeployqt "$APP" -verbose=2
|
||||||
|
macdeployqt "$APP" -always-overwrite -verbose=2
|
||||||
|
|
||||||
# FixMachOLibraryPaths
|
# FixMachOLibraryPaths
|
||||||
find "$APP/Contents/Frameworks" ""$APP/Contents/MacOS"" -type f \( -name "*.dylib" -o -perm +111 \) | while read file; do
|
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
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
codesign --deep --force --verify --verbose --sign - "$APP"
|
|
||||||
|
|
||||||
ZIP_NAME="eden-macos.zip"
|
codesign --deep --force --verbose -s - "$APP"
|
||||||
|
|
||||||
mkdir -p artifacts
|
mkdir -p artifacts
|
||||||
|
tar czf artifacts/eden.tar.zst "$APP"
|
||||||
mv $APP .
|
mv artifacts ..
|
||||||
7z a -tzip "$ZIP_NAME" eden.app
|
|
||||||
mv "$ZIP_NAME" 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_WEB_SERVICE "Enable web services (telemetry, etc.)" ON)
|
||||||
option(ENABLE_WIFI_SCAN "Enable WiFi scanning" OFF)
|
option(ENABLE_WIFI_SCAN "Enable WiFi scanning" OFF)
|
||||||
|
|
||||||
if (${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD")
|
if (${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD" OR APPLE)
|
||||||
option(YUZU_USE_BUNDLED_FFMPEG "Download/Build bundled FFmpeg" OFF)
|
option(YUZU_USE_BUNDLED_FFMPEG "Download/Build bundled FFmpeg" OFF)
|
||||||
else()
|
else()
|
||||||
option(YUZU_USE_BUNDLED_FFMPEG "Download/Build bundled FFmpeg" ON)
|
option(YUZU_USE_BUNDLED_FFMPEG "Download/Build bundled FFmpeg" ON)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD")
|
if (${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue