Files
Arch-R/packages/network/openvpn/package.mk
Rudi Heitbaum d89209cada openvpn: update to 2.5.7
https://openvpn.net/community-downloads/

The OpenVPN community project team is proud to release OpenVPN 2.5.7.
This is mostly a bugfix release, but adds limited support for OpenSSL
3.0. Full support will arrive in OpenVPN 2.6.
2022-06-03 08:40:24 +00:00

28 lines
1.1 KiB
Makefile

# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="openvpn"
PKG_VERSION="2.5.7"
PKG_SHA256="08340a389905c84196b6cd750add1bc0fa2d46a1afebfd589c24120946c13e68"
PKG_LICENSE="GPL"
PKG_SITE="https://openvpn.net"
PKG_URL="https://swupdate.openvpn.org/community/releases/${PKG_NAME}-${PKG_VERSION}.tar.gz"
PKG_DEPENDS_TARGET="toolchain lzo openssl"
PKG_LONGDESC="A full featured SSL VPN software solution that integrates OpenVPN server capabilities."
PKG_CONFIGURE_OPTS_TARGET="ac_cv_have_decl_TUNSETPERSIST=no \
--disable-server \
--disable-plugins \
--enable-iproute2 IPROUTE=/sbin/ip \
--enable-management \
--enable-fragment \
--disable-multihome \
--disable-port-share \
--disable-debug"
post_makeinstall_target() {
mkdir -p ${INSTALL}/usr/bin
ln -sf ../sbin/openvpn ${INSTALL}/usr/bin/openvpn
}