slackbuilds_ponce/audio/mt-daapd
Robby Workman 143991a46e Entire Repo: Remove APPROVED field from .info files
This field used to make sense in our pre-git days, but
the Signed-Off-By: line serves the same purpose (and
even more) now, so APPROVED has been rejected.  ;-)

Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
2012-08-14 23:22:50 -05:00
..
doinst.sh audio/mt-daapd: Moved from multimedia 2010-05-11 20:30:53 +02:00
mt-daapd.info Entire Repo: Remove APPROVED field from .info files 2012-08-14 23:22:50 -05:00
mt-daapd.SlackBuild audio/mt-daapd: Misc automated cleanups. 2010-06-04 01:00:22 -04:00
rc.mt-daapd audio/mt-daapd: Moved from multimedia 2010-05-11 20:30:53 +02:00
README audio/mt-daapd: Moved from multimedia 2010-05-11 20:30:53 +02:00
slack-desc audio/mt-daapd: Moved from multimedia 2010-05-11 20:30:53 +02:00

mt-daapd is an iTunes server for POSIX systems.  When run, iTunes will see the 
music as a shared library to other clients on the LAN, just as the OS X and 
Windows clients.  

To work properly, the music must be located on the same filesystem on which 
the daemon is running.  Also, a template has been placed in /etc/mt-daapd.conf
This file should be edited before the daemon is run.

An init script has been included for the daemon; to run at boot time, add the 
following to /etc/rc.d/rc.local:
  
	if [ -x /etc/rc.d/rc.mt-daapd ]; then
		/etc/rc.d/rc.mt-daapd start
	fi

You might also want to have the daemon shut down gracefully on system halt or 
reboot; if so, add the following to /etc/rc.d/rc.local_shutdown:

	if [ -x /etc/rc.d/rc.mt-daapd ]; then
		/etc/rc.d/rc.mt-daapd stop
	fi