freebsd-ports/audio/polypaudio/pkg-install
Joe Marcus Clarke c5915eac72 Add polypaudio, a sound server for UNIX that is designed to be a drop-in
replacement for ESOUND with a few more bells and whistles:

*  Extensible plugin architecture (by loading dynamic loadable modules
   with dlopen())
* Support for more than one sink/source
* Better low latency behaviour
* Embedabble into other software (the core is available as C library)
* Completely asynchronous C API
* Simple command line interface for reconfiguring the daemon while running
* Flexible, implicit sample type conversion and resampling
* "Zero-Copy" architecture
* Module autoloading
* Very accurate latency measurement for playback and recordin.
* May be used to combine multiple sound cards to one (with sample rate
  adjustment)
* Client side latency interpolation
2004-10-31 22:53:01 +00:00

23 lines
372 B
Bash

#!/bin/sh
case $2 in
POST-INSTALL)
GROUP=realtime
GID=557
PW=/usr/sbin/pw
if ${PW} group show "${GROUP}" 2>/dev/null; then
echo "You already have a group \"${GROUP}\", so I will use it."
else
if ${PW} groupadd ${GROUP} -g ${GID}; then
echo "Added group \"${GROUP}\"."
else
echo "Adding group \"${GROUP}\" failed..."
exit 1
fi
fi
exit 0
;;
esac