Difference between revisions of "MPlayerplug-in"
From CBLFS
Jump to navigationJump to search (New page: {| style="text-align: left; background-color: AliceBlue;" |- !Download Source: | http://downloads.sourceforge.net/mplayerplug-in/mplayerplug-in-3.45.tar.gz?modtime=1186388605&big_mirror=0 ...) |
|||
Line 26: | Line 26: | ||
Install the package | Install the package | ||
− | make install | + | make install |
− | cp mplayerplug-in*.so ${FIREFOX_PREFIX}/lib/firefox- | + | |
− | cp mplayerplug-in*.xpt ${FIREFOX_PREFIX}/lib/firefox- | + | The VERSION is you firefox's version .If you want to check out Firefox's PATH , You can run command with " whereis firefox ". |
+ | |||
+ | export VERSION="2.0.0.7" | ||
+ | export FIREFOX_PREFIX=/opt/firefox-${VERSION} | ||
+ | |||
+ | cp -v mplayerplug-in*.so ${FIREFOX_PREFIX}/lib/firefox-${VERSION}/plugins/ && | ||
+ | cp -v mplayerplug-in*.xpt ${FIREFOX_PREFIX}/lib/firefox-${VERSION}/components/ | ||
== Multilib == | == Multilib == |
Revision as of 14:29, 16 October 2007
Download Source: | http://downloads.sourceforge.net/mplayerplug-in/mplayerplug-in-3.45.tar.gz?modtime=1186388605&big_mirror=0 |
---|
Contents
Introduction to MPlayerplug-in
MPlayerplug-in is a Firefox plug in for viewing various media formats using MPlayer
Project Homepage: http://mplayerplug-in.sourceforge.net/
Dependencies
MPlayer Firefox Gecko-SDK
Non-Multilib
Compile the package:
./configure --prefix=/usr --with-gecko-sdk=${GECKO_SDK_PATH} --enable-gtk2 && make
Install the package
make install
The VERSION is you firefox's version .If you want to check out Firefox's PATH , You can run command with " whereis firefox ".
export VERSION="2.0.0.7" export FIREFOX_PREFIX=/opt/firefox-${VERSION}
cp -v mplayerplug-in*.so ${FIREFOX_PREFIX}/lib/firefox-${VERSION}/plugins/ && cp -v mplayerplug-in*.xpt ${FIREFOX_PREFIX}/lib/firefox-${VERSION}/components/
Multilib
32Bit
Compile the package:
CC="gcc -m32" PKG_CONFIG_PATH=$PKG_CONFIG_PATH32 ./configure --prefix=/usr --with-gecko-sdk=${GECKO_SDK_PATH} --enable-gtk2 --libdir=/usr/lib --enable-force32 && make
Install the package
make install && cp mplayerplug-in*.so ${FIREFOX_PREFIX}/lib/firefox-2.0.0.4/plugins/ && cp mplayerplug-in*.xpt ${FIREFOX_PREFIX}/lib/firefox-2.0.0.4/components/
N32
64Bit
Compile the package:
CC="gcc -m64" PKG_CONFIG_PATH=$PKG_CONFIG_PATH64 ./configure --prefix=/usr --with-gecko-sdk=${GECKO_SDK_PATH} --enable-gtk2 --libdir=/usr/lib64 && make
Install the package
make install && cp mplayerplug-in*.so ${FIREFOX_PREFIX}/lib64/firefox-2.0.0.4/plugins/ && cp mplayerplug-in*.xpt ${FIREFOX_PREFIX}/lib64/firefox-2.0.0.4/components/
Contents
Installed Libraries: | ${FIREFOX_PREFIX}/lib64/firefox-2.0.0.4/plugins/mplayerplug-in*.so | ${FIREFOX_PREFIX}/lib64/firefox-2.0.0.4/components/mplayerplug-in*.xpt |
---|