ebf3a56f1b64e33a7712aafc0411f7a84ae8f723
[openwrt/svn-archive/archive.git] / net / igmpproxy / Makefile
1 #
2 # Copyright (C) 2006-2011 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:=igmpproxy
11 PKG_VERSION:=0.1
12 PKG_RELEASE:=5
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@SF/igmpproxy
16 PKG_MD5SUM:=c56f41ec195bc1fe016369bf74efc5a1
17
18 include $(INCLUDE_DIR)/package.mk
19
20 define Package/igmpproxy
21 SECTION:=net
22 CATEGORY:=Network
23 SUBMENU:=Routing and Redirection
24 TITLE:=Multicast Routing Daemon
25 URL:=http://sourceforge.net/projects/igmpproxy
26 endef
27
28 define Package/igmpproxy/description
29 IGMPproxy is a simple dynamic Multicast Routing Daemon using
30 only IGMP signalling (Internet Group Management Protocol).
31 endef
32
33 define Package/igmpproxy/conffiles
34 /etc/igmpproxy.conf
35 endef
36
37 TARGET_CFLAGS += -Dlog=igmpproxy_log
38
39 define Build/Compile
40 $(MAKE) -C $(PKG_BUILD_DIR)/src \
41 CC="$(TARGET_CC)" \
42 CFLAGS="$(TARGET_CFLAGS) -std=gnu99"
43 endef
44
45 define Package/igmpproxy/install
46 $(INSTALL_DIR) $(1)/etc
47 $(INSTALL_CONF) ./files/igmpproxy.conf $(1)/etc/
48 $(INSTALL_DIR) $(1)/etc/init.d
49 $(INSTALL_BIN) ./files/igmpproxy.init $(1)/etc/init.d/igmpproxy
50 $(INSTALL_DIR) $(1)/usr/sbin
51 $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/igmpproxy $(1)/usr/sbin/
52 endef
53
54 $(eval $(call BuildPackage,igmpproxy))