LMS would really only look in the root - and in plugin folders.
Therefore the simplest solution probably is to create a minimalist
plugin:

Plugin.pm:

Code:
--------------------
    
  package Plugins::MyCustomConvert::Plugin;
  
  # nothing to do here. We only want LMS to register the search path
  
  1;
  
--------------------


install.xml:

Code:
--------------------
    <?xml version='1.0' standalone='yes'?>
  <extension>
        <name>My own custom convert plugin</name>
        <creator>You!</creator>
        <id>[put your own UUID here]</id>
        <module>Plugins::MyCustomConvert::Plugin</module>
        <targetApplication>
                <id>SqueezeCenter</id>
                <maxVersion>*</maxVersion>
                <minVersion>7.7</minVersion>
        </targetApplication>
        <type>2</type>
        <version>0.1.2</version>
  </extension>
  
--------------------


And drop your custom-convert.conf file together with these in
Plugins/MyCustomConvert (see Settings/Information for the custom Plugins
path).



Michael

"It doesn't work - what shall I do?" - "Please check your server.log
and/or scanner.log file!"
(LMS: Settings/Information)
------------------------------------------------------------------------
mherger's Profile: http://forums.slimdevices.com/member.php?userid=50
View this thread: http://forums.slimdevices.com/showthread.php?t=113249

_______________________________________________
unix mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/unix

Reply via email to