d065f8efceba73b3b40f7d87291d9e0176f3a59f
[openwrt/staging/lynxis/omap.git] / package / network / services / mdns / Makefile
1 #
2 # Copyright (C) 2014 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=mdns
11 PKG_VERSION:=2014-09-02
12 PKG_RELEASE=$(PKG_SOURCE_VERSION)
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
15 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
16 PKG_SOURCE_URL:=git://git.openwrt.org/project/mdnsd.git
17 PKG_SOURCE_PROTO:=git
18 PKG_SOURCE_VERSION:=b7e5cb7ab91a9487ec71a14b706b5589cefe9052
19
20 PKG_MAINTAINER:=John Crispin <blogic@openwrt.org>
21
22 include $(INCLUDE_DIR)/package.mk
23 include $(INCLUDE_DIR)/cmake.mk
24
25 define Package/mdns
26 SECTION:=net
27 CATEGORY:=Network
28 TITLE:=OpenWrt Multicast DNS Daemon
29 DEPENDS:=+libubox +libubus +libblobmsg-json
30 endef
31
32 TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include
33
34 define Package/mdns/install
35 $(INSTALL_DIR) $(1)/usr/sbin $(1)/etc/init.d $(1)/etc/config
36 $(INSTALL_BIN) $(PKG_BUILD_DIR)/mdns $(1)/usr/sbin/
37 $(INSTALL_BIN) ./files/mdns.init $(1)/etc/init.d/mdns
38 $(INSTALL_BIN) ./files/mdns.config $(1)/etc/config/mdns
39 endef
40
41 $(eval $(call BuildPackage,mdns))