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

vstpath=$root/$prefix/lib/vst
var_append makeopt " " "WINEPATH=$root/$prefix"
var_append makeopt " " "VST_PATH=$vstpath"
var_append makeinstopt " " "WINEPATH=$root/$prefix"
var_append makeinstopt " " "VST_PATH=$vstpath"
function vstserver_premake() {
mkdir -vp $vstpath
}
function vst_server_postmake() {
cat <<- EOT > $root/etc/profile.d/vstserver
export VST_PATH=$vstpath
EOT
}
premake=vstserver_premake