blob: 5ceb82d4784a12e26a3516af796d1b8c812d81af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
#
# $NetBSD: DEINSTALL,v 1.1.1.1 2003/12/24 00:09:55 ben Exp $
#
case $2 in
DEINSTALL) cat << EOF
=============================================================
The xmms-meta-input player scripts were not wiped out by
this deletion process. If you don't want them around,
please remove ${PKG_PREFIX}/lib/xmms/Input/Meta.
=============================================================
EOF
;;
esac
|