nixpkgs/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/builder.sh
Lluís Batlle i Rossell 0160f222cc Adding flashplayer11. It builds fine for me on x86_64.
Patch by Eduard Carreras.


svn path=/nixpkgs/trunk/; revision=30712
2011-12-03 15:16:17 +00:00

24 lines
378 B
Bash

source $stdenv/setup
dontStrip=1
dontPatchELF=1
sourceRoot=$TMPDIR
unpackPhase() {
tar xvzf $src;
for a in *; do
if [ -d $a ]; then
cd $a
break
fi
done
}
installPhase() {
ensureDir $out/lib/mozilla/plugins
cp -pv libflashplayer.so $out/lib/mozilla/plugins
patchelf --set-rpath "$rpath" $out/lib/mozilla/plugins/libflashplayer.so
}
genericBuild