kodiPlusings.pvr-hts: fix loading of plugin

The plugin was looking for pvr.hts.so.2.2.13, so as only pvr.hts.so was copied, the plugin would not load. This symlinks all variants of the name to the addons folder.
This commit is contained in:
Simon Vandel Sillesen 2016-03-20 17:03:12 +01:00
parent f59998055b
commit 76ce988c50

View File

@ -245,7 +245,7 @@ in
# them. Symlinking .so, as setting LD_LIBRARY_PATH is of no use
installPhase = ''
make install
ln -s $out/lib/kodi/addons/pvr.hts/pvr.hts.so $out/share/kodi/addons/pvr.hts
ln -s $out/lib/kodi/addons/pvr.hts/pvr.hts.so* $out/share/kodi/addons/pvr.hts
'';
};