mirror of
https://github.com/chrisbenincasa/tunarr.git
synced 2026-04-18 09:03:35 -04:00
25 lines
735 B
Bash
Executable File
25 lines
735 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -x
|
|
|
|
BINARY_NAME="$1"
|
|
SCRIPT_FOLDER=$(dirname "${BASH_SOURCE[0]}")
|
|
REPO_ROOT=$(realpath "$SCRIPT_FOLDER/..")
|
|
APP_NAME="$REPO_ROOT/Tunarr.app"
|
|
|
|
if [ -d "$APP_NAME" ]
|
|
then
|
|
rm -rf "$APP_NAME"
|
|
fi
|
|
|
|
pushd "$REPO_ROOT/macos/Tunarr" || exit
|
|
|
|
security find-identity -p codesigning -v
|
|
xcodebuild build -configuration Release ARCHS="$2"
|
|
cp -R "$REPO_ROOT/macos/Tunarr/build/Release/Tunarr.app" "$APP_NAME"
|
|
|
|
popd || exit
|
|
|
|
cp -a "$REPO_ROOT/server/bin/$BINARY_NAME" "$APP_NAME/Contents/MacOS/tunarr-macos"
|
|
file "$REPO_ROOT/server/bin/meilisearch-$3"
|
|
cp -a "$REPO_ROOT/server/bin/meilisearch-$3" "$APP_NAME/Contents/MacOS/meilisearch"
|
|
chmod +x "$APP_NAME/Contents/MacOS/tunarr-macos" "$APP_NAME/Contents/MacOS/meilisearch" |