mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 14:13:16 +00:00
d162fd5ed4
93458ac dns: fix response to TYPE_PTR query 68af311 fix unicast response port and timeout a2b4979 service: announce all services in single dns answer 4537734 display announced services in ubus call umdns browse 0b50c29 display more srv attributes in output of ubus browse function Signed-off-by: John Crispin <john@phrozen.org>
48 lines
1.2 KiB
Makefile
48 lines
1.2 KiB
Makefile
#
|
|
# Copyright (C) 2014-2023 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=$(PROJECT_GIT)/project/mdnsd.git
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_DATE:=2024-12-11
|
|
PKG_SOURCE_VERSION:=93458ac90911b84c7279070cd350405d203b702d
|
|
PKG_MIRROR_HASH:=6e6fe777d19da744116579be612590e1b41a9ef2c8ff2afeaea942d6b3da49ef
|
|
|
|
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 +libudebug
|
|
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))
|