mirror of the now-defunct rocklinux.org
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.

18 lines
413 B

  1. vstpath=$root/$prefix/lib/vst
  2. var_append makeopt " " "WINEPATH=$root/$prefix"
  3. var_append makeopt " " "VST_PATH=$vstpath"
  4. var_append makeinstopt " " "WINEPATH=$root/$prefix"
  5. var_append makeinstopt " " "VST_PATH=$vstpath"
  6. function vstserver_premake() {
  7. mkdir -vp $vstpath
  8. }
  9. function vst_server_postmake() {
  10. cat <<- EOT > $root/etc/profile.d/vstserver
  11. export VST_PATH=$vstpath
  12. EOT
  13. }
  14. premake=vstserver_premake