ff029ef59c
This fixes a bunch of interoperability issues, and one or two crashes. Signed-off-by: David Woodhouse <dwmw2@infradead.org> git-svn-id: svn://svn.openwrt.org/openwrt/packages@31135 3c298f89-4303-0410-b956-a3cf2f4a3e73
46 lines
1.1 KiB
Makefile
46 lines
1.1 KiB
Makefile
#
|
|
# Copyright (C) 2006 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:=openconnect
|
|
PKG_VERSION:=3.15
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=ftp://ftp.infradead.org/pub/openconnect/
|
|
PKG_MD5SUM:=94245f4bac42a288100becab0b4ca29a
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/openconnect
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
DEPENDS:=+libxml2 +libopenssl +kmod-tun
|
|
TITLE:=VPN client for Cisco's AnyConnect SSL VPN
|
|
URL:=http://www.infradead.org/openconnect/
|
|
SUBMENU:=VPN
|
|
endef
|
|
|
|
define Package/openconnect/description
|
|
A VPN client compatible with Cisco's AnyConnect SSL VPN.
|
|
|
|
OpenConnect is a client for Cisco's AnyConnect SSL VPN, which is
|
|
supported by IOS 12.4(9)T or later on Cisco SR500, 870, 880, 1800, 2800,
|
|
3800, 7200 Series and Cisco 7301 Routers.
|
|
endef
|
|
|
|
CONFIGURE_ARGS+=--disable-shared
|
|
|
|
define Package/openconnect/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/openconnect \
|
|
$(1)/usr/sbin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,openconnect))
|