Renku is a simple cross platform Image Board and Booru browser
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
887 B

4 years ago
4 years ago
  1. #!/usr/bin/env bash
  2. SOURCE="${BASH_SOURCE[0]}"
  3. while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symlink
  4. DIR="$( cd -P "$( dirname "$SOURCE" )" >/dev/null 2>&1 && pwd )"
  5. SOURCE="$(readlink "$SOURCE")"
  6. [[ $SOURCE != /* ]] && SOURCE="$DIR/$SOURCE" # if $SOURCE was a relative symlink, we need to resolve it relative to the path where the symlink file was located
  7. done
  8. DIR="$( cd -P "$( dirname "$SOURCE" )" >/dev/null 2>&1 && pwd )"
  9. pushd $DIR
  10. source _variables.sh
  11. cd ..
  12. echo "Installing dependencies"
  13. poetry install
  14. echo "Building application"
  15. poetry run python -m nuitka \
  16. --clang \
  17. --lto \
  18. --plugin-enable=qt-plugins \
  19. --follow-imports \
  20. --standalone \
  21. ${MAIN_ENTRYPOINT}
  22. # Qt directory must exist or a segfault will occur on startup
  23. # https://github.com/Nuitka/Nuitka/issues/680#issuecomment-616292573
  24. mkdir -p ${DIST_DIRECTORY}/PyQt5/Qt
  25. popd