let ipkg fail when a package file to be installed is not found
[openwrt/staging/dedeckeh.git] / openwrt / package / mpd / Config.in
1 menu "mpd............................... Music Player Daemon"
2
3 config BR2_PACKAGE_MPD
4 prompt "mpd............................... Music Player Daemon"
5 tristate
6 default m if CONFIG_DEVEL
7 help
8 MPD is a music player supporting flac, mp3 and ogg files.
9 It is typically controlled over a network using one of it's many
10 clients including mpc(console), gmpc(gnome), phpmp(php) etc.
11
12 http://www.musicpd.org/
13
14 config BR2_COMPILE_MPD_WITH_MP3
15 prompt "MP3 support"
16 bool
17 default y
18 depends BR2_PACKAGE_MPD
19 select BR2_PACKAGE_LIBMAD
20 select BR2_PACKAGE_LIBID3TAG
21 help
22 Enable mp3 support (libmad).
23
24 config BR2_COMPILE_MPD_WITH_OGG
25 prompt "Ogg Support"
26 bool
27 default y
28 depends BR2_PACKAGE_MPD
29 select BR2_PACKAGE_LIBVORBISIDEC
30 help
31 Enable ogg support (tremor).
32
33 config BR2_COMPILE_MPD_WITH_FLAC
34 prompt "FLAC Support"
35 bool
36 default y
37 depends BR2_PACKAGE_MPD
38 select BR2_PACKAGE_LIBFLAC
39 help
40 Enable flac support (libflac).
41
42 endmenu