mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-05 01:20:42 +00:00
c73f045241
* Add realpath.sh for emulating readlink -f on macOS MIT licensed from https://github.com/mkropat/sh-realpath
70 lines
2.2 KiB
Bash
Executable File
70 lines
2.2 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
FILENAME="$1"
|
|
|
|
if [ $# -ne 1 ]; then
|
|
echo "Usage: $0 FILENAME";
|
|
exit;
|
|
fi
|
|
|
|
if [ ! -f "${REPO_ROOT}"/build/bin/qrenderdoc.app/Contents/MacOS/qrenderdoc ] || [ ! -f "${REPO_ROOT}"/build/bin/renderdoccmd ]; then
|
|
echo "ERROR: Missing qrenderdoc.app or renderdoccmd builds";
|
|
exit 1;
|
|
fi
|
|
|
|
if ! which convert > /dev/null 2>&1; then
|
|
echo "ERROR: Require imagemagick for packaging step";
|
|
echo " brew install imagemagick";
|
|
exit 1;
|
|
fi
|
|
|
|
if ! which create-dmg > /dev/null 2>&1; then
|
|
echo "ERROR: Require create-dmg for packaging step";
|
|
echo " brew install create-dmg";
|
|
exit 1;
|
|
fi
|
|
|
|
# create final bundle folder
|
|
mkdir -p "${REPO_ROOT}"/dist/RenderDoc.app
|
|
|
|
# copy in qrenderdoc bundle
|
|
cp -R "${REPO_ROOT}"/build/bin/qrenderdoc.app/* "${REPO_ROOT}"/dist/RenderDoc.app/
|
|
|
|
# copy in renderdoccmd
|
|
cp "${REPO_ROOT}"/build/bin/renderdoccmd "${REPO_ROOT}"/dist/RenderDoc.app/Contents/MacOS/
|
|
|
|
# copy in plugins
|
|
if [ -d "${REPO_ROOT}"/plugins-macos ]; then
|
|
cp -R "${REPO_ROOT}"/plugins-macos "${REPO_ROOT}/dist/RenderDoc.app/Contents/plugins"
|
|
else
|
|
echo "WARNING: Plugins not present. Download and extract https://renderdoc.org/plugins.tgz in root folder";
|
|
fi
|
|
|
|
# copy in all of the android files.
|
|
mkdir -p "${REPO_ROOT}/dist/RenderDoc.app/Contents/plugins/android/"
|
|
|
|
if ls "${REPO_ROOT}"/build-android*/bin/*.apk; then
|
|
cp "${REPO_ROOT}"/build-android*/bin/*.apk "${REPO_ROOT}/dist/RenderDoc.app/Contents/plugins/android/"
|
|
else
|
|
echo "WARNING: Android build not present. Build arm32 and arm64 apks in build-android-arm{32,64} folders";
|
|
fi
|
|
|
|
# Create dmg background image
|
|
convert -size 600x300 xc:white \
|
|
-fill '#3BB779' -draw "rectangle 0,0 600,100" \
|
|
-fill white -pointsize 24 -gravity north \
|
|
-annotate +0+50 "Drag qrenderdoc to your Applications folder." \
|
|
/tmp/rdbackground.png
|
|
|
|
rm -rf "${REPO_ROOT}"/package
|
|
mkdir "${REPO_ROOT}"/package
|
|
|
|
create-dmg --volname "$FILENAME" \
|
|
--volicon "${REPO_ROOT}"/dist/RenderDoc.app/Contents/Resources/RenderDoc.icns \
|
|
--background /tmp/rdbackground.png \
|
|
--window-pos 200 120 --window-size 600 350 --icon-size 100 \
|
|
--icon RenderDoc.app 200 190 \
|
|
--app-drop-link 400 185 \
|
|
"${REPO_ROOT}"/package/"${FILENAME}".dmg "${REPO_ROOT}"/dist/
|
|
|