27 lines
522 B
Bash
27 lines
522 B
Bash
#!/bin/sh
|
|
#
|
|
# $NetBSD: DEINSTALL,v 1.1 2001/11/01 00:16:43 zuntum Exp $
|
|
#
|
|
|
|
PKGNAME=$1
|
|
STAGE=$2
|
|
|
|
case ${STAGE} in
|
|
DEINSTALL)
|
|
;;
|
|
|
|
POST-DEINSTALL)
|
|
cat << EOF
|
|
=============================================================================
|
|
If you won't be using ${PKGNAME} any longer, you may want to remove
|
|
any skins that were installed in ${PKG_PREFIX}/share/gqmpeg/skins.
|
|
=============================================================================
|
|
EOF
|
|
;;
|
|
|
|
*)
|
|
echo "Unexpected argument: ${STAGE}"
|
|
exit 1
|
|
;;
|
|
esac
|
|
exit 0
|