mirror of
https://github.com/coolsnowwolf/routing
synced 2025-01-09 05:17:26 +08:00
58 lines
1.7 KiB
Makefile
58 lines
1.7 KiB
Makefile
|
#
|
||
|
# Copyright (C) 2014 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:=minimalist-pcproxy
|
||
|
PKG_RELEASE:=$(AUTORELEASE)
|
||
|
|
||
|
PKG_SOURCE_PROTO:=git
|
||
|
PKG_SOURCE_URL:=https://github.com/fingon/minimalist-pcproxy.git
|
||
|
PKG_SOURCE_DATE:=2014-12-12
|
||
|
PKG_SOURCE_VERSION:=2d6d1b0b0a3b79a9b4a9b0a7606a84600a967bcb
|
||
|
PKG_MIRROR_HASH:=0065015e8063a20ee79f1ade4ac2e173a5ff6cffe762521271ec7b849bb956a7
|
||
|
|
||
|
PKG_MAINTAINER:=Markus Stenberg <fingon@iki.fi>
|
||
|
PKG_LICENSE:=BSD-3-Clause
|
||
|
PKG_LICENSE_FILES:=LICENSE
|
||
|
|
||
|
include $(INCLUDE_DIR)/package.mk
|
||
|
include $(INCLUDE_DIR)/cmake.mk
|
||
|
|
||
|
define Package/minimalist-pcproxy
|
||
|
SECTION:=net
|
||
|
CATEGORY:=Network
|
||
|
TITLE:=Lightweight PCP proxy
|
||
|
URL:=https://github.com/fingon/minimalist-pcproxy
|
||
|
DEPENDS:=+libubox @IPV6
|
||
|
endef
|
||
|
|
||
|
define Package/minimalist-pcproxy/description
|
||
|
This package contains a daemon which can be used to forward
|
||
|
PCP (Port Control Protocol - RFC6887) requests requests to PCP remote servers.
|
||
|
|
||
|
In and of itself, it is not very useful, but combined with hnetd+miniupnpd
|
||
|
it allows for control of NAT forwarding and firewall pinholes from multiple
|
||
|
hops away.
|
||
|
endef
|
||
|
|
||
|
define Package/minimalist-pcproxy/install
|
||
|
$(INSTALL_DIR) $(1)/usr/sbin/
|
||
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/minimalist-pcproxy $(1)/usr/sbin/
|
||
|
$(INSTALL_DIR) $(1)/etc/uci-defaults
|
||
|
$(INSTALL_BIN) ./files/minimalist-pcproxy.defaults $(1)/etc/uci-defaults/x-minimalist-pcproxy.defaults
|
||
|
endef
|
||
|
|
||
|
define Package/minimalist-pcproxy/postinst
|
||
|
#!/bin/sh
|
||
|
[ -n "$${IPKG_INSTROOT}" ] || {
|
||
|
(. /etc/uci-defaults/x-minimalist-pcproxy.defaults) && rm -f /etc/uci-defaults/x-minimalist-pcproxy.defaults
|
||
|
}
|
||
|
exit 0
|
||
|
endef
|
||
|
|
||
|
$(eval $(call BuildPackage,minimalist-pcproxy))
|