[project @ 5851]
[audio-mpd.git] / README
blobd473d4ab72e14badab05c7af4a4bb7e2957a250c
1 Audio::MPD
2 ==========
4 Audio::MPD is a perl module for developing MPD (Music Player Daemon)
5 clients and other scripts that control the MPD server.
7 See scripts/example.pl for some simple examples of usage,
8 or scripts/mpc.pl for a very simple pure-perl copy of 'mpc'.
10 Read more about MPD on http://www.musicpd.org/
11 Reports bugs at https://rt.cpan.org/Ticket/Create.html?Queue=Audio-MPD
14 INSTALLATION
15 ============
17 To install this module, run the following commands:
19     perl Makefile.PL
20     make
21     make test
22     make install
24 Or, using Module::Builder:
26     perl Build.PL
27     ./Build
28     ./Build test
29     ./Build install
32 If mpd is running, you can force the full non-regression test suite to be ran
33 by using:
34     MPD_TEST_OVERRIDE=1 make test
37 You can also try to install it directly as a package for your favorite Linux
38 distribution:
39     - mandriva:  perl-Audio-MPD
43 COPYRIGHT AND LICENSE
44 =====================
46 Copyright (c) 2005 Tue Abrahamsen <tue.abrahamsen@gmail.com>
47 Copyright (c) 2006 Nicholas J. Humfrey <njh@aelius.com>
48 Copyright (c) 2007 Jerome Quelin <jquelin@cpan.org>
50 This program is free software; you can redistribute it and/or modify
51 it under the terms of the GNU General Public License as published by
52 the Free Software Foundation; either version 2 of the License, or
53 (at your option) any later version.
55 This program is distributed in the hope that it will be useful,
56 but WITHOUT ANY WARRANTY; without even the implied warranty of
57 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
58 GNU General Public License for more details.
60 You should have received a copy of the GNU General Public License
61 along with this program; if not, write to the Free Software
62 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA