8098f681ec
Netscape plugin for Adobe Flash player. This package contains a plugin that enables Netscape to render the Flash format. The nspluginwrapper option (enabled by default) permits the use of the the Linux x86 flash player in Firefox browsers on other x86 systems. Systems tested with nspluginwrapper: - NetBSD 5.0 - works - firefox 3.0.x - works
20 lines
359 B
Bash
20 lines
359 B
Bash
#!/bin/sh
|
|
# $NetBSD: INSTALL.nspluginwrapper,v 1.1.1.1 2008/12/18 23:00:45 jmcneill Exp $
|
|
|
|
PATH=@PREFIX@/bin:$PATH
|
|
|
|
case $STAGE in
|
|
POST-INSTALL)
|
|
nspluginwrapper -i @PREFIX@/lib/netscape/plugins/libflashplayer.so
|
|
;;
|
|
esac
|
|
|
|
|
|
case $STAGE in
|
|
DEINSTALL)
|
|
for wrapped in `nspluginwrapper -l | grep ^/` ; do
|
|
nspluginwrapper -r $wrapped
|
|
done
|
|
;;
|
|
esac
|
|
|