e4473afe58
This plugin allows you to write XMMS plugins as Unix programs. You write a program that understands the very simple commands on its command line and outputs raw sound on its standard output and you're done with it. What's good (and in fact the purpose of this plugin) is that you can write input plugins for XMMS in C shell or Bash! Of course, you won't be able to do much number crunching in a shell script, but you can use it to run other programs to do the actual playing.
17 lines
410 B
Bash
17 lines
410 B
Bash
#!/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
|