0340ce3cb7
SSDP managing daemon. Designed to work with miniupnpc, miniupnpd, minidlna, etc. http://miniupnp.free.fr/ Signed-off-by: Fabrice Fontaine <fabrice.fontaine@orange.com> [Thomas: - remove patch for _GNU_SOURCE, pass it from the .mk file instead - add dependency on BR2_USE_MMU, fork() is used. - rename $IF variable in init script/systemd unit file to $IFACE, for clarity.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
41 lines
1.3 KiB
Makefile
41 lines
1.3 KiB
Makefile
################################################################################
|
|
#
|
|
# minissdpd
|
|
#
|
|
################################################################################
|
|
|
|
MINISSDPD_VERSION = 1.5
|
|
MINISSDPD_SITE = http://miniupnp.free.fr/files
|
|
MINISSDPD_LICENSE = BSD-3c
|
|
MINISSDPD_LICENSE_FILES = LICENSE
|
|
MINISSDPD_DEPENDENCIES = libnfnetlink
|
|
|
|
define MINISSDPD_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) \
|
|
CFLAGS="$(TARGET_CFLAGS) -D_GNU_SOURCE" \
|
|
-C $(@D)
|
|
endef
|
|
|
|
define MINISSDPD_INSTALL_TARGET_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) \
|
|
PREFIX=$(TARGET_DIR) install
|
|
endef
|
|
|
|
# Use dedicated init scripts for systemV and systemd instead of using
|
|
# minissdpd.init.d.script as it is not compatible with buildroot init system
|
|
define MINISSDPD_INSTALL_INIT_SYSV
|
|
$(RM) $(TARGET_DIR)/etc/init.d/minissdpd
|
|
$(INSTALL) -D -m 0755 package/minissdpd/S50minissdpd \
|
|
$(TARGET_DIR)/etc/init.d/S50minissdpd
|
|
endef
|
|
|
|
define MINISSDPD_INSTALL_INIT_SYSTEMD
|
|
$(INSTALL) -D -m 644 package/minissdpd/minissdpd.service \
|
|
$(TARGET_DIR)/usr/lib/systemd/system/minissdpd.service
|
|
mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants
|
|
ln -sf ../../../../usr/lib/systemd/system/minissdpd.service \
|
|
$(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/minissdpd.service
|
|
endef
|
|
|
|
$(eval $(generic-package))
|