[project @ 7073]
[audio-mpd.git] / README
blobf3abdfdf7bfe23b1b14e854245fa38a55b3a0d64
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, all rights reserved.
47 Copyright (c) 2006 Nicholas, all rights reserved.
48 Copyright (c) 2007 Jerome Quelin, all rights reserved.
50 This program is free software; you can redistribute it and/or modify
51 it under the same terms as Perl itself.