mirror of
https://github.com/openwrt/packages.git
synced 2026-01-10 11:44:48 +00:00
upmpdcli: Move to sound menu and sub-directory
Signed-off-by: Ted Hess <thess@kitschensync.net>
This commit is contained in:
@@ -1,53 +0,0 @@
|
||||
#
|
||||
# Copyright (C) 2014 OpenWrt.org
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
# See /LICENSE for more information.
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=upmpdcli
|
||||
PKG_VERSION:=0.9.0
|
||||
PKG_RELEASE:=2
|
||||
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_SOURCE_URL:=http://www.lesbonscomptes.com/upmpdcli/downloads
|
||||
PKG_MD5SUM:=0e7b86037f19ea3a08067409af6f6902
|
||||
PKG_MAINTAINER:=Petko Bordjukov <bordjukov@gmail.com>
|
||||
PKG_LICENSE:=GPL-2.0
|
||||
PKG_LICENSE_FILES:=COPYING
|
||||
|
||||
PKG_INSTALL:=1
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/upmpdcli
|
||||
SECTION:=multimedia
|
||||
CATEGORY:=Multimedia
|
||||
URL:=http://www.lesbonscomptes.com/upmpdcli
|
||||
DEPENDS+= +libupnpp +libmpdclient
|
||||
TITLE:=A UPnP front-end to MPD, the Music Player Daemon
|
||||
USERID:=upmpdcli=89:upmpdcli=89
|
||||
endef
|
||||
|
||||
define Package/upmpdcli/description
|
||||
upmpdcli implements an UPnP Media Renderer, using MPD to perform the real work.
|
||||
endef
|
||||
|
||||
define Package/upmpdcli/install
|
||||
$(INSTALL_DIR) $(1)/etc
|
||||
$(INSTALL_CONF) $(PKG_INSTALL_DIR)/etc/upmpdcli.conf $(1)/etc/
|
||||
$(INSTALL_DIR) $(1)/etc/config
|
||||
$(INSTALL_CONF) ./files/upmpdcli.config $(1)/etc/config/upmpdcli
|
||||
$(INSTALL_DIR) $(1)/usr/bin
|
||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/upmpdcli $(1)/usr/bin/
|
||||
$(INSTALL_DIR) $(1)/usr/share/upmpdcli
|
||||
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/share/upmpdcli/* $(1)/usr/share/upmpdcli/
|
||||
$(INSTALL_DATA) ./files/upmpdcli.png $(1)/usr/share/upmpdcli/
|
||||
$(INSTALL_DIR) $(1)/etc/init.d
|
||||
$(INSTALL_BIN) ./files/upmpdcli.init $(1)/etc/init.d/upmpdcli
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,upmpdcli))
|
||||
@@ -1,15 +0,0 @@
|
||||
config upmpdcli lan
|
||||
option interface 'br-lan'
|
||||
# option friendly_name 'upmpdcli'
|
||||
# option mpd_host '127.0.0.1'
|
||||
# option mpd_port '6600'
|
||||
# option upmpd_port '0'
|
||||
# option config '/etc/upmpdcli.conf'
|
||||
|
||||
# Add additional interfaces
|
||||
#
|
||||
#config upmpdcli wifi
|
||||
# option interface 'wlan0'
|
||||
|
||||
#config upmpdcli wan
|
||||
# option interface 'eth0'
|
||||
@@ -1,51 +0,0 @@
|
||||
#!/bin/sh /etc/rc.common
|
||||
# Copyright (C) 2014 OpenWrt.org
|
||||
|
||||
NAME=upmpdcli
|
||||
START=95
|
||||
|
||||
UPMPD_BIN=/usr/bin/${NAME}
|
||||
|
||||
USE_PROCD=1
|
||||
|
||||
append_arg() {
|
||||
local cfg="$1"
|
||||
local var="$2"
|
||||
local opt="$3"
|
||||
local def="$4"
|
||||
local val
|
||||
|
||||
config_get val "$cfg" "$var"
|
||||
[ -n "$val" -o -n "$def" ] && procd_append_param command $opt "${val:-$def}"
|
||||
}
|
||||
|
||||
start_instance() {
|
||||
local cfg="$1"
|
||||
local interface
|
||||
|
||||
procd_open_instance
|
||||
|
||||
procd_set_param command "${UPMPD_BIN}"
|
||||
|
||||
# config_get interface "$cfg" interface
|
||||
# procd_add_reload_interface_trigger $interface
|
||||
|
||||
append_arg "$cfg" interface "-i"
|
||||
append_arg "$cfg" mpd_host "-h"
|
||||
append_arg "$cfg" mpd_port "-p"
|
||||
append_arg "$cfg" upmpd_port "-P"
|
||||
|
||||
append_arg "$cfg" config "-c"
|
||||
append_arg "$cfg" friendly_name "-f"
|
||||
|
||||
procd_close_instance
|
||||
}
|
||||
|
||||
service_triggers() {
|
||||
procd_add_reload_trigger "${NAME}"
|
||||
}
|
||||
|
||||
start_service() {
|
||||
config_load ${NAME}
|
||||
config_foreach start_instance ${NAME}
|
||||
}
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 1.6 KiB |
@@ -1,9 +0,0 @@
|
||||
--- a/src/upmpdcli.conf
|
||||
+++ b/src/upmpdcli.conf
|
||||
@@ -53,3 +53,6 @@ ohmetapersist = 1
|
||||
# Path to the sc2mpd if it is not in /usr/bin and the location is not in
|
||||
# the PATH for the init scripts.
|
||||
#sc2mpd = /usr/bin/sc2mpd
|
||||
+
|
||||
+# Icon for MPD UPnP interface
|
||||
+iconpath = /usr/share/upmpdcli/upmpdcli.png
|
||||
Reference in New Issue
Block a user