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.
|
- #!/bin/bash
-
- set -e
-
- cd $(dirname ${0})
- PAWPAW_ROOT="${PWD}"
-
- # ---------------------------------------------------------------------------------------------------------------------
-
- target="${1}"
-
- if [ -z "${target}" ]; then
- echo "usage: ${0} <target>"
- exit 1
- fi
-
- ./bootstrap-common.sh "${target}"
- ./bootstrap-plugins.sh "${target}"
- ./bootstrap-qt.sh "${target}"
-
- # ---------------------------------------------------------------------------------------------------------------------
-
- source setup/check_target.sh
- source setup/env.sh
- source setup/functions.sh
- source setup/versions.sh
-
- # ---------------------------------------------------------------------------------------------------------------------
- # file/magic (posix only)
-
- # if [ "${WIN32}" -eq 0 ]; then
- # download file "${FILE_VERSION}" "ftp://ftp.astron.com/pub/file"
- # build_autoconf file "${FILE_VERSION}"
- # fi
-
- # ---------------------------------------------------------------------------------------------------------------------
|