8eac991899
This includes 3 cleanups: fd5a160 Don't cache hosts as services 80dd246 Refresh DNS records A and AAAA directly 6515101 Access cached records (instead of services) to read list of hosts Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
47 lines
1.2 KiB
Makefile
47 lines
1.2 KiB
Makefile
#
|
|
# 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:=umdns
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_URL=$(LEDE_GIT)/project/mdnsd.git
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_DATE:=2017-03-14
|
|
PKG_SOURCE_VERSION:=fd5a160a15c48a97f7fc755c1310f17c869f0233
|
|
PKG_MIRROR_HASH:=5f41fb9211b1ee0cda88efc28a5d5406d7041f52c8bebce4b81e2ab64f03aa00
|
|
|
|
PKG_MAINTAINER:=John Crispin <john@phrozen.org>
|
|
PKG_LICENSE:=LGPL-2.1
|
|
|
|
include $(INCLUDE_DIR)/package-seccomp.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
define Package/umdns
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=OpenWrt Multicast DNS Daemon
|
|
DEPENDS:=+libubox +libubus +libblobmsg-json
|
|
endef
|
|
|
|
TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include
|
|
|
|
define Package/umdns/conffiles
|
|
/etc/config/umdns
|
|
endef
|
|
|
|
define Package/umdns/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin $(1)/etc/init.d $(1)/etc/config
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/umdns $(1)/usr/sbin/
|
|
$(INSTALL_BIN) ./files/umdns.init $(1)/etc/init.d/umdns
|
|
$(INSTALL_CONF) ./files/umdns.config $(1)/etc/config/umdns
|
|
$(call InstallSeccomp,$(1),./files/umdns.json)
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,umdns))
|