• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

build/H23-Nov-2021-9670

doc/H23-Nov-2021-151109

include/mpd/H23-Nov-2021-7,9141,834

src/H23-Nov-2021-11,6037,074

test/H23-Nov-2021-1,013732

vapi/H23-Nov-2021-760722

.gitignoreH A D23-Nov-202121 53

.travis.ymlH A D23-Nov-20211.4 KiB6757

AUTHORSH A D23-Nov-2021518 2115

COPYINGH A D23-Nov-20211.4 KiB2722

NEWSH A D23-Nov-20215.9 KiB188166

README.rstH A D23-Nov-2021905 4024

libmpdclient.ldH A D23-Nov-202110.2 KiB499463

meson.buildH A D23-Nov-20215.7 KiB253224

README.rst

1libmpdclient
2============
3
4libmpdclient is a C library which implements the `Music Player Daemon
5<http://www.musicpd.org/>`__ protocol.
6
7The API documentation is generated during the build if you have
8doxygen.  You may browse it online:
9
10http://www.musicpd.org/doc/libmpdclient/
11
12libmpdclient is released under the revised BSD License.
13For the full license, see `COPYING <COPYING>`__.
14
15
16Installing from source
17----------------------
18
19You need:
20
21- a C99 compliant compiler (e.g. gcc)
22- `Meson 0.37 <http://mesonbuild.com/>`__ and `Ninja <https://ninja-build.org/>`__
23
24Run ``meson``:
25
26 meson . output
27
28Compile and install::
29
30 ninja -C output
31 ninja -C output install
32
33
34Links
35-----
36
37- `Home page and download <https://www.musicpd.org/libs/libmpdclient/>`__
38- `git repository <https://github.com/MusicPlayerDaemon/libmpdclient/>`__
39- `Bug tracker <https://github.com/MusicPlayerDaemon/libmpdclient/issues>`__
40