Cross-Platform build scripts for audio plugins
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.

37 lines
1014B

  1. #!/bin/bash
  2. set -e
  3. cd $(dirname ${0})
  4. PAWPAW_ROOT="${PWD}"
  5. # ---------------------------------------------------------------------------------------------------------------------
  6. target="${1}"
  7. if [ -z "${target}" ]; then
  8. echo "usage: ${0} <target>"
  9. exit 1
  10. fi
  11. ./bootstrap-common.sh "${target}"
  12. ./bootstrap-plugins.sh "${target}"
  13. ./bootstrap-qt.sh "${target}"
  14. # ---------------------------------------------------------------------------------------------------------------------
  15. source setup/check_target.sh
  16. source setup/env.sh
  17. source setup/functions.sh
  18. source setup/versions.sh
  19. # ---------------------------------------------------------------------------------------------------------------------
  20. # file/magic (posix only)
  21. # if [ "${WIN32}" -eq 0 ]; then
  22. # download file "${FILE_VERSION}" "ftp://ftp.astron.com/pub/file"
  23. # build_autoconf file "${FILE_VERSION}"
  24. # fi
  25. # ---------------------------------------------------------------------------------------------------------------------