mirror of
https://github.com/mkxp-z/mkxp-z.git
synced 2025-07-12 02:45:17 +02:00
10 lines
No EOL
278 B
Bash
Executable file
10 lines
No EOL
278 B
Bash
Executable file
#!/bin/bash
|
|
|
|
IDENTITY="$1"
|
|
TIMESTAMP=--timestamp
|
|
if [[ $IDENTITY == "" ]]; then
|
|
IDENTITY=-
|
|
TIMESTAMP=""
|
|
fi
|
|
|
|
codesign -vfs $IDENTITY --entitlements "${MESON_SOURCE_ROOT}/macos/entitlements.plist" --deep --ignore-resources -o runtime $TIMESTAMP "${MESON_INSTALL_PREFIX}" |