···24 # and the non-wrapped kodi lib/... folder before even trying to dlopen
25 # them. Symlinking .so, as setting LD_LIBRARY_PATH is of no use
26 installPhase = let n = namespace; in ''
0027 make install
28 ln -s $out/lib/addons/${n}/${n}.so.${version} $out${addonDir}/${n}/${n}.so.${version}
29 ${extraInstallPhase}
0030 '';
31} // attrs))
···24 # and the non-wrapped kodi lib/... folder before even trying to dlopen
25 # them. Symlinking .so, as setting LD_LIBRARY_PATH is of no use
26 installPhase = let n = namespace; in ''
27+ runHook preInstall
28+29 make install
30 ln -s $out/lib/addons/${n}/${n}.so.${version} $out${addonDir}/${n}/${n}.so.${version}
31 ${extraInstallPhase}
32+33+ runHook postInstall
34 '';
35} // attrs))