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.

16 lines
341B

  1. #!/bin/sh
  2. PYTHON=$(which python3 2>/dev/null)
  3. if [ ! -f ${PYTHON} ]; then
  4. PYTHON=python
  5. fi
  6. if [ "$1" = "--gdb" ]; then
  7. PYTHON="gdb --args $PYTHON"
  8. fi
  9. INSTALL_PREFIX="X-PREFIX-X"
  10. export PATH="$INSTALL_PREFIX"/lib/carla:$PATH
  11. exec $PYTHON "$INSTALL_PREFIX"/share/carla/carla --with-appname="$0" --with-libprefix="$INSTALL_PREFIX" "$@"