[project @ 5521]
[audio-mpd.git] / README
blob7f5db847292a2f198971b1af1de8edd510725e54
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 The module is built using Module::Build (which you must have installed on
18 your system).
19 To install this module type the following:
21         perl Build.PL
22                 ./Build
23                 ./Build test
25 And then as root:
27         ./Build install
30 You can also try to install it directly as a package for your favorite Linux
31 distribution:
32     - mandriva:  perl-Audio-MPD
36 COPYRIGHT AND LICENSE
37 =====================
39 Copyright (c) 2005 Tue Abrahamsen <tue.abrahamsen@gmail.com>
40 Copyright (c) 2006 Nicholas J. Humfrey <njh@aelius.com>
41 Copyright (c) 2007 Jerome Quelin <jquelin@cpan.org>
43 This program is free software; you can redistribute it and/or modify
44 it under the terms of the GNU General Public License as published by
45 the Free Software Foundation; either version 2 of the License, or
46 (at your option) any later version.
48 This program is distributed in the hope that it will be useful,
49 but WITHOUT ANY WARRANTY; without even the implied warranty of
50 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
51 GNU General Public License for more details.
53 You should have received a copy of the GNU General Public License
54 along with this program; if not, write to the Free Software
55 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA