mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 09:48:00 -04:00
21 lines
359 B
Bash
21 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
|
|
|