faba06ce54
LD_LIBRARY_PATH elements, since they can use patchelf --rpath if necessary. * Flashplayer / JRE: do just that. * JRE: libstdcpp5 no longer seems to be necessary for the plugin. svn path=/nixpkgs/trunk/; revision=12094
21 lines
665 B
Bash
21 lines
665 B
Bash
source $stdenv/setup
|
|
source $makeWrapper
|
|
|
|
ensureDir $out/real
|
|
|
|
skip=143273 # Look for "BZh91" in the executable.
|
|
|
|
(dd bs=1 count=$skip of=/dev/null && dd) < $src | (cd $out/real && tar xvfj -)
|
|
|
|
rm -rf $out/real/Bin $out/real/postinst
|
|
|
|
patchelf --interpreter $(cat $NIX_GCC/nix-support/dynamic-linker) $out/real/realplay.bin
|
|
|
|
ensureDir $out/bin
|
|
makeWrapper "$out/real/realplay.bin" "$out/bin/realplay" \
|
|
--set HELIX_LIBS "$out/real" \
|
|
--suffix-each LD_LIBRARY_PATH ':' "$(addSuffix /lib $libPath)"
|
|
|
|
#echo "$libstdcpp5/lib" > $out/real/mozilla/extra-library-path # !!! must be updated, use patchelf --rpath
|
|
echo "$out/bin" > $out/real/mozilla/extra-bin-path
|