mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-22 16:32:01 +03:00
48 lines
1.2 KiB
Bash
Executable File
48 lines
1.2 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
#
|
|
# This script creates a pyinstaller build of yubikey-manager from the submodule in this repository.
|
|
#
|
|
|
|
set -e
|
|
|
|
case "$(uname)" in
|
|
Darwin*)
|
|
OS="macos";;
|
|
Linux*)
|
|
OS="linux";;
|
|
MINGW*)
|
|
OS="windows";;
|
|
esac
|
|
|
|
echo "Building authenticator-helper for $OS..."
|
|
OUTPUT="build/$OS"
|
|
|
|
cd helper
|
|
poetry install
|
|
rm -rf ../$OUTPUT/helper
|
|
poetry run pyinstaller authenticator-helper.spec --distpath ../$OUTPUT
|
|
cd ..
|
|
|
|
# Fixup permissions (should probably be more strict)
|
|
find $OUTPUT/helper -type f -exec chmod a-x {} +
|
|
chmod a+x $OUTPUT/helper/authenticator-helper
|
|
|
|
# Adhoc sign executable (MacOS)
|
|
if [ "$OS" = "macos" ]; then
|
|
codesign -f --timestamp --entitlements macos/helper.entitlements --sign - $OUTPUT/helper/authenticator-helper
|
|
fi
|
|
|
|
echo "Generating license files..."
|
|
cd helper
|
|
poetry build
|
|
VENV="../$OUTPUT/helper-license-venv"
|
|
rm -rf $VENV
|
|
poetry run python -m venv $VENV
|
|
$VENV/bin/pip install --upgrade pip wheel
|
|
$VENV/bin/pip install dist/authenticator_helper-0.1.0-py3-none-any.whl pip-licenses
|
|
$VENV/bin/pip-licenses --format=json --no-license-path --with-license-file --ignore-packages authenticator-helper --output-file ../assets/licenses/helper.json
|
|
cd ..
|
|
|
|
echo "All done, output in $OUTPUT/"
|