blob: 794b759675e489c6657e0bdf2203ffb8fa527285 (
plain)
1 # Description: An easy-to-use, robust and highly configurable VPN (Virtual Private Network)
2 # URL: https://openvpn.net
3 # Maintainer: Aaron Ball, nullspoon at oper dot io
4 # Depends on: openssl lzo lz4 python3-docutils libcap-ng
5
6 name=openvpn
7 version=2.6.10
8 release=1
9 source=("https://github.com/OpenVPN/openvpn/archive/refs/tags/v${version}.tar.gz")
10
11 build() {
12 cd ${name}-${version}
13 autoreconf -vfi
14
15 ./configure \
16 --prefix=/usr \
17 --sbindir=/usr/bin \
18 --enable-plugins \
19 --enable-x509-alt-username
20 make
21
22 make DESTDIR="${PKG}" install
23 rm -r "${PKG}/usr/share/doc"
24 }
|