mirror of
https://github.com/novatiq/packages.git
synced 2026-07-29 15:03:05 +01:00
For consistency, use full name instead of $(PKG_NAME) in define and eval lines for all packages. I've seen reviews that asked to do this before, and I am asking the same during reviews now. To avoid this in the future, fix this treewide so when people use existing packages as example, we will not have to request this change anymore. This makes all packages consistent with both LEDE and OpenWrt base repositories. Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
56 lines
1.6 KiB
Makefile
56 lines
1.6 KiB
Makefile
# Copyright (c) 2017 Stan Grishin (stangri@melmac.net)
|
|
# This is free software, licensed under the GNU General Public License v3.
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=vpnbypass
|
|
PKG_VERSION:=1.3.0
|
|
PKG_RELEASE:=1
|
|
PKG_LICENSE:=GPL-3.0+
|
|
PKG_MAINTAINER:=Stan Grishin <stangri@melmac.net>
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/vpnbypass
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
DEPENDS:=+ip-full +ipset +iptables +ubox +dnsmasq-full
|
|
CONFLICTS:=ip dnsmasq
|
|
TITLE:=Simple VPN Bypass Service
|
|
PKGARCH:=all
|
|
endef
|
|
|
|
define Package/vpnbypass/description
|
|
This service can be used to enable simple VPN split tunnelling.
|
|
Supports accessing domains, IP ranges outside of your VPN tunnel.
|
|
Also supports dedicating local ports/IP ranges for direct internet access (outside of your VPN tunnel).
|
|
Please see the README for further information.
|
|
endef
|
|
|
|
define Package/vpnbypass/conffiles
|
|
/etc/config/vpnbypass
|
|
endef
|
|
|
|
define Build/Prepare
|
|
mkdir -p $(PKG_BUILD_DIR)/files/
|
|
$(CP) ./files/vpnbypass.init $(PKG_BUILD_DIR)/files/vpnbypass.init
|
|
sed -i "s|^\(PKG_VERSION\).*|\1='$(PKG_VERSION)-$(PKG_RELEASE)'|" $(PKG_BUILD_DIR)/files/vpnbypass.init
|
|
endef
|
|
|
|
define Build/Configure
|
|
endef
|
|
|
|
define Build/Compile
|
|
endef
|
|
|
|
define Package/vpnbypass/install
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/files/vpnbypass.init $(1)/etc/init.d/vpnbypass
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
$(INSTALL_CONF) ./files/vpnbypass.conf $(1)/etc/config/vpnbypass
|
|
$(INSTALL_DIR) $(1)/etc/hotplug.d/firewall
|
|
$(INSTALL_DATA) ./files/vpnbypass.hotplug $(1)/etc/hotplug.d/firewall/94-vpnbypass
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,vpnbypass))
|