pod update
[audio-mpd.git] / README
blob43205ccf0ee0ca28ed5b150363bf63e3edce31d2
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/
13 INSTALLATION
14 ============
16 To install this module, run the following commands:
18     perl Makefile.PL
19     make
20     make test
21     make install
23 Or, using Module::Builder:
25     perl Build.PL
26     ./Build
27     ./Build test
28     ./Build install
31 If mpd is running, you can force the full non-regression test suite to be ran
32 by using:
33     MPD_TEST_OVERRIDE=1 make test
36 You can also try to install it directly as a package for your favorite Linux
37 distribution:
38     - mandriva:  perl-Audio-MPD
42 SUPPORT AND DOCUMENTATION
43 =========================
45 After installing, you can find documentation for this module with the perldoc
46 command.
48     perldoc Audio::MPD
50 You can also look for information at:
51   . Search CPAN:
52         http://search.cpan.org/dist/Audio-MPD
53   . Open bugs for this module:
54         http://rt.cpan.org/NoAuth/Bugs.html?Dist=Audio-MPD
55   . AnnoCPAN, annotated CPAN documentation:
56         http://annocpan.org/dist/Audio-MPD
57   . CPAN Ratings:
58         http://cpanratings.perl.org/d/Audio-MPD
60 Audio::MPD development takes place on <audio-mpd@googlegroups.com>: feel free
61 to join us. (use http://groups.google.com/group/audio-mpd to sign in).
63 Our git repository is located at git://repo.or.cz/audio-mpd.git, and
64 can be browsed at http://repo.or.cz/w/audio-mpd.git.
70 COPYRIGHT AND LICENSE
71 =====================
73 Copyright (c) 2005 Tue Abrahamsen, all rights reserved.
74 Copyright (c) 2006 Nicholas, all rights reserved.
75 Copyright (c) 2007-2008 Jerome Quelin, all rights reserved.
77 This program is free software; you can redistribute it and/or modify
78 it under the same terms as Perl itself.