[Thomas: - add package to package/Config.in - add missing dependencies on thread and largefile, inherited from libupnp. Noticed by Yann E. Morin. - add installation of default configuration file. Noticed by Yann E. Morin. - fix the license, it's not GPLv2, but GPLv2+. - remove the colon in the user description, noticed by Yann E. Morin. - added a patch to fix build with uClibc. - fix the init script installation to use a full path as the target.] Signed-off-by: Joerg Krause <jkrause@posteo.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
19 lines
617 B
Plaintext
19 lines
617 B
Plaintext
config BR2_PACKAGE_UPMPDCLI
|
|
bool "upmpdcli"
|
|
select BR2_PACKAGE_EXPAT
|
|
select BR2_PACKAGE_LIBUPNP
|
|
select BR2_PACKAGE_LIBMPDCLIENT
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_LARGEFILE # libupnp
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libupnp
|
|
help
|
|
upmpdcli is a UPnP Media Renderer front-end for MPD, the Music
|
|
Player Daemon. It supports UPnP gapless track transitions and
|
|
the OpenHome ohMedia services.
|
|
|
|
http://www.lesbonscomptes.com/upmpdcli/
|
|
|
|
comment "upmpdcli needs a toolchain w/ C++, largefile, threads"
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_LARGEFILE || \
|
|
!BR2_TOOLCHAIN_HAS_THREADS
|