mirror of
https://github.com/hanwckf/immortalwrt-mt798x.git
synced 2025-01-10 19:12:33 +08:00
54 lines
1.3 KiB
Makefile
54 lines
1.3 KiB
Makefile
#
|
|
# Copyright (C) 2007-2012 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:=n2n_v2
|
|
PKG_VERSION:=2.4
|
|
PKG_RELEASE:=2
|
|
PKG_REV=25563f31d9aba5f61b3e2fb42941b66dad1f531f
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-r$(PKG_REV).tar.bz2
|
|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_VERSION:=$(PKG_REV)
|
|
PKG_SOURCE_URL:=https://github.com/ntop/n2n.git
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/n2n_v2
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=N2N VPN tunneling daemon(V2)
|
|
URL:=http://www.ntop.org/n2n/
|
|
SUBMENU:=VPN
|
|
DEPENDS:=+libpthread +kmod-tun +libopenssl
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
CFLAGS="$(TARGET_CFLAGS)" \
|
|
INSTALL_PROG=":"
|
|
endef
|
|
|
|
define Package/n2n_v2/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/edge $(1)/usr/sbin/
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/supernode $(1)/usr/sbin/
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
$(INSTALL_DATA) ./files/n2n_v2.config $(1)/etc/config/n2n_v2
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) ./files/n2n_v2.init $(1)/etc/init.d/n2n_v2
|
|
endef
|
|
|
|
define Package/n2n_v2/conffiles
|
|
/etc/config/n2n_v2
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,n2n_v2))
|