summaryrefslogtreecommitdiff
path: root/multimedia/adobe-flash-plugin10.1/INSTALL.nspluginwrapper
blob: 530c2a0938f246830b824f74446f8b98f4949205 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh
# $NetBSD: INSTALL.nspluginwrapper,v 1.2 2011/02/10 09:49:09 ahoka 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