Audio plugin host https://kx.studio/carla
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.

12 lines
230B

  1. #!/bin/sh
  2. PYTHON=$(which python3 2>/dev/null)
  3. if [ ! -f ${PYTHON} ]; then
  4. PYTHON=python
  5. fi
  6. INSTALL_PREFIX="X-PREFIX-X"
  7. export CARLA_LIB_PREFIX="$INSTALL_PREFIX"
  8. exec $PYTHON "$INSTALL_PREFIX"/share/carla/carla_modgui.py "$@"