mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-04-02 10:41:46 -04:00
27 lines
1.1 KiB
Makefile
27 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.6.2"
|
|
PKG_SHA256="42d561a9af150b21bc914e3b7aa09f88013d2ffa6d5ce75a025a3b34caa948d4"
|
|
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 libcap-ng lz4 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
|
|
}
|