Assists music production by grouping standalone programs into sessions. Community version of "Non Session Manager".
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.

28 lines
624B

  1. #!/bin/sh
  2. #
  3. # Copyright (C) 2008 Jonathan Moore Liles
  4. # This file is licensed under version 2 of the GPL.
  5. . scripts/config-funcs
  6. [ $# -gt 0 ] && fatal "This is not an autoconf script. Run it without any options and you will be prompted."
  7. begin
  8. begin_options
  9. ask "Install prefix?" prefix ${prefix:-/usr/local}
  10. ask "Use LASH?" USE_LASH ${USE_LASH:-yes}
  11. ask "Build for debugging?" MAINTAINER_MODE ${MAINTAINER_MODE:-no}
  12. begin_tests
  13. require_FLTK 1 1 7
  14. require_command FLUID fluid
  15. require_package JACK 0.103.0 jack
  16. require_package libsndfile 1.0.17 sndfile
  17. [ $USE_LASH = yes ] && require_package LASH 0.5.4 lash-1.0
  18. end