mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-01-28 03:37:17 +01:00
2f75344fd0cc build: require CMake >= 3.10 due to dropped legacy support Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
52 lines
1.3 KiB
Makefile
52 lines
1.3 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:=2025-10-04
|
|
PKG_SOURCE_VERSION:=2f75344fd0cc848558bf2ea3a94c0bf8b903ff89
|
|
PKG_MIRROR_HASH:=ca03392a39e3e38b276514d4627bab25093cf873abf361352c82dfec0c4bdc93
|
|
|
|
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 \
|
|
$(1)/usr/share/ucode/cli/modules
|
|
$(INSTALL_DATA) ./files/mdns.uc $(1)/usr/share/ucode/cli/modules
|
|
$(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))
|