pkgsrc/multimedia/adobe-flash-plugin10.1/INSTALL.nspluginwrapper
abs 6ffe6d3283 sync with adobe-flash-plugin11 - mainly adjust the MESSAGE to only show
in the nspluginwrapper+pulseaudio case
bump PKGREVISION
2011-11-03 18:16:51 +00:00

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