mirror of
https://github.com/ankitects/anki.git
synced 2026-09-10 07:29:19 -04:00
Two build fixes found while getting the build working on FreeBSD.
1. **Remove hardcoded `#!/bin/bash` paths and use /usr/bin/env instead
/**
2. **env_remove("YARN_BINARY")**
Tested on FreeBSD 16.0-CURRENT amd64.
A second series adds FreeBSD support with `platform` variants,
environment overrides, PyQt6 handling and docs.
Closes #5301
21 lines
802 B
Bash
Executable File
21 lines
802 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
export PYTHONWARNINGS=default
|
|
export PYTHONPYCACHEPREFIX=out/pycache
|
|
# define these as blank before calling the script if you want to disable them
|
|
export ANKIDEV=${ANKIDEV-1}
|
|
export QTWEBENGINE_REMOTE_DEBUGGING=${QTWEBENGINE_REMOTE_DEBUGGING-8080}
|
|
export QTWEBENGINE_CHROMIUM_FLAGS=${QTWEBENGINE_CHROMIUM_FLAGS---remote-allow-origins=https://chrome-devtools-frontend.appspot.com,http://localhost:$QTWEBENGINE_REMOTE_DEBUGGING}
|
|
export PYENV=${PYENV-out/pyenv}
|
|
|
|
# The pages can be accessed by, e.g. surfing to
|
|
# http://localhost:40000/_anki/pages/deckconfig.html
|
|
# Useful in conjunction with tools/web-watch for auto-rebuilding.
|
|
export ANKI_API_PORT=${ANKI_API_PORT-40000}
|
|
export ANKI_API_HOST=${ANKI_API_HOST-127.0.0.1}
|
|
|
|
./ninja pylib qt
|
|
${PYENV}/bin/python tools/run.py $*
|