2015-08-24 08:28:11 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2015 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:=omcproxy
|
|
|
|
PKG_VERSION:=2015-08-24
|
2015-09-15 07:54:55 +00:00
|
|
|
PKG_RELEASE:=3
|
2015-08-24 08:28:11 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
PKG_SOURCE_URL:=https://github.com/sbyx/omcproxy.git
|
|
|
|
PKG_SOURCE_PROTO:=git
|
2015-09-15 07:54:55 +00:00
|
|
|
PKG_SOURCE_VERSION:=8de9fa84e018e152e45c342f10b5b5140b63e4b1
|
2015-08-24 08:28:11 +00:00
|
|
|
PKG_MAINTAINER:=Steven Barth <cyrus@openwrt.org>
|
2015-10-26 09:01:48 +00:00
|
|
|
PKG_LICENSE:=Apache-2.0
|
2015-08-24 08:28:11 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
|
|
|
|
define Package/omcproxy
|
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
|
|
|
DEPENDS:=+libubox +libubus
|
|
|
|
TITLE:=IGMPv3 and MLDv2 Multicast Proxy
|
|
|
|
endef
|
|
|
|
|
2015-08-24 08:53:16 +00:00
|
|
|
CMAKE_OPTIONS += -DWITH_LIBUBOX=1
|
2015-08-24 08:28:11 +00:00
|
|
|
|
|
|
|
define Package/omcproxy/install
|
|
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
|
|
$(INSTALL_CONF) ./files/omcproxy.config $(1)/etc/config/omcproxy
|
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
|
|
$(INSTALL_BIN) ./files/omcproxy.init $(1)/etc/init.d/omcproxy
|
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/omcproxy $(1)/usr/sbin/
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,omcproxy))
|