Mercurial > minori
view scripts/osx/deploy_build.sh @ 337:a7d4e5107531
dep/animone: REFACTOR ALL THE THINGS
1: animone now has its own syntax divergent from anisthesia,
making different platforms actually have their own sections
2: process names in animone are now called `comm' (this will
probably break things). this is what its called in bsd/linux
so I'm just going to use it everywhere
3: the X11 code now checks for the existence of a UTF-8 window title
and passes it if available
4: ANYTHING THATS NOT LINUX IS 100% UNTESTED AND CAN AND WILL BREAK!
I still actually need to test the bsd code. to be honest I'm probably
going to move all of the bsds into separate files because they're
all essentially different operating systems at this point
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Wed, 19 Jun 2024 12:51:15 -0400 |
parents | 22f9aacf6ac1 |
children | 8d45d892be88 |
line wrap: on
line source
#!/bin/sh # # deploy_build.sh: # run this in your build dir to get a usable app bundle SCRIPT_DIR=$(dirname -- "$0") FRAMEWORK_MODE=false if test "x$1x" = "x--frameworksx"; then echo "framework mode enabled" FRAMEWORK_MODE=true fi BUNDLE_NAME="Minori" cp -r "$SCRIPT_DIR/../../rc/sys/osx/$BUNDLE_NAME.app" . mkdir -p "$BUNDLE_NAME.app/Contents/MacOS" cp ".libs/minori" "$BUNDLE_NAME.app/Contents/MacOS/minori" mkdir -p "$BUNDLE_NAME.app/Contents/Frameworks" for i in animone pugixml anitomy; do cp "dep/$i/.libs/lib$i.0.dylib" "$BUNDLE_NAME.app/Contents/Frameworks" install_name_tool -change "/usr/local/lib/lib$i.0.dylib" "@executable_path/../Frameworks/lib$i.0.dylib" "$BUNDLE_NAME.app/Contents/MacOS/minori" done macdeployqt "$BUNDLE_NAME.app" -no-strip if $FRAMEWORK_MODE; then for i in QtCore QtGui QtWidgets; do install_name_tool -id @executable_path/../Frameworks/$i.framework/Versions/5/$i $BUNDLE_NAME.app/Contents/Frameworks/$i.framework/Versions/5/$i install_name_tool -change @rpath/$i.framework/Versions/5/$i @executable_path/../Frameworks/$i.framework/Versions/5/$i $BUNDLE_NAME.app/Contents/MacOS/minori done fi