c7ae195c9e
Signed-off-by: Steven Barth <steven@midlink.org> SVN-Revision: 43169
43 lines
1.1 KiB
Makefile
43 lines
1.1 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:=mdns
|
|
PKG_VERSION:=2014-11-03
|
|
PKG_RELEASE=$(PKG_SOURCE_VERSION)
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
|
PKG_SOURCE_URL:=git://git.openwrt.org/project/mdnsd.git
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_VERSION:=a5560f88bb2cddeef0ef11a12e7822b9c19a75a5
|
|
|
|
PKG_MAINTAINER:=John Crispin <blogic@openwrt.org>
|
|
PKG_LICENSE:=LGPL-2.1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
define Package/mdns
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=OpenWrt Multicast DNS Daemon
|
|
DEPENDS:=+libubox +libubus +libblobmsg-json
|
|
endef
|
|
|
|
TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include
|
|
|
|
define Package/mdns/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin $(1)/etc/init.d $(1)/etc/config
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/mdns $(1)/usr/sbin/
|
|
$(INSTALL_BIN) ./files/mdns.init $(1)/etc/init.d/mdns
|
|
$(INSTALL_BIN) ./files/mdns.config $(1)/etc/config/mdns
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,mdns))
|