summaryrefslogtreecommitdiff
path: root/openvpn/Pkgfile
blob: 55c5be25e048f562ef8eb842be0f982aefa8547f (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.12
    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 }

Generated by cgit