Difference between revisions of "Flash Plugin"

From LFScript
 
Line 1: Line 1:
[[Category:Scripts]]
+
[[Category:Deleted Scripts]]
 +
'''This software is included in BLFS and therefore no longer maintained here.'''
 +
 
 
Flash plugin for firefox.
 
Flash plugin for firefox.
  

Latest revision as of 20:03, 20 March 2017

This software is included in BLFS and therefore no longer maintained here.

Flash plugin for firefox.

LFScript can find this software under the name flash-plugin.

Sources


MD5 Checksums:

90f020bbee838657ee8ef5ff93557380  flash_player_npapi_linux.i386.tar.gz
dd8a19ea0aaa0e532d5c72f4309a67ae  flash_player_npapi_linux.x86_64.tar.gz

Installation

As the root user:

ARCH="x86_64"
case `uname -m` in
  i?86)
    ARCH="i386"
    ;;
esac

mkdir flash
pushd flash
tar -xf ../../flash_player_npapi_linux.*${ARCH}.tar.gz

cp -vR usr /
mkdir -p /usr/lib/mozilla/plugins
cp -v libflashplayer.so /usr/lib/mozilla/plugins

popd