2017-10-06 21:58:48 +02:00
|
|
|
#!/bin/bash -ex
|
|
|
|
|
|
|
|
. .travis/common/pre-upload.sh
|
|
|
|
|
|
|
|
REV_NAME="citra-osx-${GITDATE}-${GITREV}"
|
|
|
|
ARCHIVE_NAME="${REV_NAME}.tar.gz"
|
|
|
|
COMPRESSION_FLAGS="-czvf"
|
|
|
|
|
|
|
|
mkdir "$REV_NAME"
|
|
|
|
|
2018-09-24 15:45:45 +02:00
|
|
|
cp build/bin/citra "$REV_NAME"
|
|
|
|
cp -r build/bin/citra-qt.app "$REV_NAME"
|
|
|
|
cp build/bin/citra-room "$REV_NAME"
|
2017-10-06 21:58:48 +02:00
|
|
|
|
2018-12-17 16:33:42 +01:00
|
|
|
# move libs into folder for deployment
|
|
|
|
dylibbundler -b -x "${REV_NAME}/citra-qt.app/Contents/MacOS/citra-qt" -cd -d "${REV_NAME}/citra-qt.app/Contents/Frameworks/" -p "@executable_path/../Frameworks/" -of
|
|
|
|
# move qt frameworks into app bundle for deployment
|
|
|
|
$(brew --prefix)/opt/qt5/bin/macdeployqt "${REV_NAME}/citra-qt.app" -executable="${REV_NAME}/citra-qt.app/Contents/MacOS/citra-qt"
|
2017-10-06 21:58:48 +02:00
|
|
|
|
2018-12-17 16:33:42 +01:00
|
|
|
# move libs into folder for deployment
|
2017-10-06 21:58:48 +02:00
|
|
|
dylibbundler -b -x "${REV_NAME}/citra" -cd -d "${REV_NAME}/libs" -p "@executable_path/libs/"
|
|
|
|
|
2018-12-28 11:43:54 +01:00
|
|
|
# TODO(merry): Figure out why these libraries are not automatically processed
|
|
|
|
install_name_tool -change /usr/local/Cellar/ffmpeg/4.1_1/lib/libavutil.56.dylib @executable_path/../Frameworks/libavutil.56.dylib "${REV_NAME}/citra-qt.app/Contents/Frameworks/libavcodec.58.dylib"
|
|
|
|
install_name_tool -change /usr/local/Cellar/ffmpeg/4.1_1/lib/libavutil.56.dylib @executable_path/../Frameworks/libavutil.56.dylib "${REV_NAME}/citra-qt.app/Contents/Frameworks/libswresample.3.dylib"
|
|
|
|
install_name_tool -change /usr/local/Cellar/ffmpeg/4.1_1/lib/libavutil.56.dylib @executable_path/libs/libavutil.56.dylib "${REV_NAME}/libs/libavcodec.58.dylib"
|
|
|
|
install_name_tool -change /usr/local/Cellar/ffmpeg/4.1_1/lib/libavutil.56.dylib @executable_path/libs/libavutil.56.dylib "${REV_NAME}/libs/libswresample.3.dylib"
|
|
|
|
install_name_tool -change /usr/local/Cellar/libvorbis/1.3.6/lib/libvorbis.0.dylib @executable_path/libs/libavutil.56.dylib "${REV_NAME}/libs/libvorbisenc.2.dylib"
|
|
|
|
|
2017-10-06 21:58:48 +02:00
|
|
|
# Make the citra-qt.app application launch a debugging terminal.
|
|
|
|
# Store away the actual binary
|
2018-12-17 16:33:42 +01:00
|
|
|
mv ${REV_NAME}/citra-qt.app/Contents/MacOS/citra-qt ${REV_NAME}/citra-qt.app/Contents/MacOS/citra-qt-bin
|
2017-10-06 21:58:48 +02:00
|
|
|
|
2018-12-17 16:33:42 +01:00
|
|
|
cat > ${REV_NAME}/citra-qt.app/Contents/MacOS/citra-qt <<EOL
|
2017-10-06 21:58:48 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
cd "\`dirname "\$0"\`"
|
|
|
|
chmod +x citra-qt-bin
|
|
|
|
open citra-qt-bin --args "\$@"
|
|
|
|
EOL
|
|
|
|
# Content that will serve as the launching script for citra (within the .app folder)
|
|
|
|
|
|
|
|
# Make the launching script executable
|
2018-12-17 16:33:42 +01:00
|
|
|
chmod +x ${REV_NAME}/citra-qt.app/Contents/MacOS/citra-qt
|
|
|
|
|
|
|
|
# Verify loader instructions
|
|
|
|
find "$REV_NAME" -exec otool -L {} \;
|
2017-10-06 21:58:48 +02:00
|
|
|
|
|
|
|
. .travis/common/post-upload.sh
|