mcproxy: bump to latest
[lede-routing/.git] / mcproxy / 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:=mcproxy
11 PKG_SOURCE_VERSION:=6638aa9aabd2ccdde8915b61a8e0fb995b1f91a3
12 PKG_VERSION:=2014-05-31-$(PKG_SOURCE_VERSION)
13 PKG_RELEASE:=1
14
15 PKG_SOURCE_PROTO:=git
16 PKG_SOURCE_URL:=git://github.com/mcproxy/mcproxy.git
17 PKG_MAINTAINER:=Steven Barth <cyrus@openwrt.org>
18
19 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
20 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
21
22 include $(INCLUDE_DIR)/package.mk
23 include $(INCLUDE_DIR)/cmake.mk
24
25 define Package/mcproxy
26   SECTION:=net
27   CATEGORY:=Network
28   SUBMENU:=Routing and Redirection
29   TITLE:=Multicast Proxy for IGMP/MLD
30   URL:=http://mcproxy.realmv6.org
31   DEPENDS:=+libpthread +libstdcpp @(!GCC_VERSION_4_4&&!GCC_VERSION_4_6)
32 endef
33
34 define Package/mcproxy/description
35  mcproxy is a free & open source implementation of the IGMP/MLD proxy function (see  RFC 4605) for Linux systems.
36  It operates on the kernel tables for multicast routing and allows for multiple instantiations,
37  as well as dynamically changing downstream interfaces.
38 endef
39
40 define Package/mcproxy/conffiles
41 /etc/mcproxy.conf
42 endef
43
44 define Package/mcproxy/install
45         $(INSTALL_DIR) $(1)/etc/init.d
46         $(INSTALL_CONF) ./files/mcproxy.conf $(1)/etc
47         $(INSTALL_BIN) ./files/mcproxy.init $(1)/etc/init.d/mcproxy
48         $(INSTALL_DIR) $(1)/usr/sbin
49         $(INSTALL_BIN) $(PKG_BUILD_DIR)/mcproxy-bin $(1)/usr/sbin/mcproxy
50 endef
51
52 $(eval $(call BuildPackage,mcproxy))