6ffe6d3283
in the nspluginwrapper+pulseaudio case bump PKGREVISION
19 lines
349 B
Bash
19 lines
349 B
Bash
#!/bin/sh
|
|
# $NetBSD: INSTALL.nspluginwrapper,v 1.3 2011/11/03 18:16:51 abs 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
|