03ad25819b5f1872d2044fae9486464a1a41d5c2
[openwrt/svn-archive/archive.git] / package / network / services / 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:=8
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@SF/igmpproxy
16 PKG_MD5SUM:=c56f41ec195bc1fe016369bf74efc5a1
17 PKG_MAINTAINER:=Felix Fietkau <nbd@openwrt.org>
18
19 include $(INCLUDE_DIR)/package.mk
20
21 PKG_FIXUP:=autoreconf
22 PKG_LICENSE:=GPL-2.0+
23
24 define Package/igmpproxy
25 SECTION:=net
26 CATEGORY:=Network
27 SUBMENU:=Routing and Redirection
28 DEPENDS:=+USE_GLIBC:librt
29 TITLE:=Multicast Routing Daemon
30 URL:=http://sourceforge.net/projects/igmpproxy
31 endef
32
33 define Package/igmpproxy/description
34 IGMPproxy is a simple dynamic Multicast Routing Daemon using
35 only IGMP signalling (Internet Group Management Protocol).
36 endef
37
38 define Package/igmpproxy/conffiles
39 /etc/config/igmpproxy
40 endef
41
42 TARGET_CFLAGS += -Dlog=igmpproxy_log
43
44 define Build/Compile
45 $(MAKE) -C $(PKG_BUILD_DIR)/src \
46 CC="$(TARGET_CC)" \
47 CFLAGS="$(TARGET_CFLAGS) -std=gnu99"
48 endef
49
50 define Package/igmpproxy/install
51 $(INSTALL_DIR) $(1)/etc/config
52 $(INSTALL_CONF) ./files/igmpproxy.config $(1)/etc/config/igmpproxy
53 $(INSTALL_DIR) $(1)/etc/init.d
54 $(INSTALL_BIN) ./files/igmpproxy.init $(1)/etc/init.d/igmpproxy
55 $(INSTALL_DIR) $(1)/usr/sbin
56 $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/igmpproxy $(1)/usr/sbin/
57 endef
58
59 $(eval $(call BuildPackage,igmpproxy))