mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-03-15 16:11:02 +01:00
3abb601ab77f mrib: receive_mrt: workaround for RTL8373 queries e25491f27af3 Revert "mrib: receive_mrt: workaround for RTL8373 queries" cd20f3a4b4f1 mrib: receive_mrt: workaround for RTL8373 queries cad82dc5cb65 formal: fix workflow permissions 997a981ae375 github: ci: add MIPS64, PowerPC64 and RISCV64 e646f462daeb github: ci: add powerpc arch b3d1e2e48cf4 github: ci: add cmake build and source directories de4353546064 github: ci: disable json-c tests 2be7e63d9b68 scripts: devel-build: disable json-c tests 36adc79c7b76 github: fix CI apt dependencies 11e45f6cfe10 README: update build instructions 78eea9b83a93 omcproxy: use syslog mask for logging level 9f0a1454de10 github: add CI build 49df5f5b8704 omcproxy: add a simple build script 757c1c704c9d libubox: remove submodule 8957f6c2557b omcproxy: update cmake file 848d696419eb proxy: fix indentation warning Link: https://github.com/openwrt/openwrt/pull/22317 Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
47 lines
1.2 KiB
Makefile
47 lines
1.2 KiB
Makefile
#
|
|
# 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_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL=$(PROJECT_GIT)/project/omcproxy.git
|
|
PKG_MIRROR_HASH:=41d85cf544e3833df6a605827ab625a4028274ff46aadee13b8644eb25f8edae
|
|
PKG_SOURCE_DATE:=2026-03-07
|
|
PKG_SOURCE_VERSION:=3abb601ab77f5e914a3203e5d0c8ae7fb1579bae
|
|
PKG_MAINTAINER:=Steven Barth <cyrus@openwrt.org>
|
|
PKG_LICENSE:=Apache-2.0
|
|
|
|
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
|
|
|
|
define Package/omcproxy/conffiles
|
|
/etc/config/omcproxy
|
|
endef
|
|
|
|
CMAKE_OPTIONS += -DWITH_LIBUBOX=1
|
|
|
|
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))
|