29 lines
1 KiB
Bash
29 lines
1 KiB
Bash
# Template file for 'openvpn'
|
|
pkgname=openvpn
|
|
version=2.5.0
|
|
revision=2
|
|
build_style=gnu-configure
|
|
configure_args="$(vopt_enable pkcs11) --disable-systemd
|
|
$(vopt_if mbedtls --with-crypto-library=mbedtls)"
|
|
hostmakedepends="pkg-config"
|
|
makedepends="$(vopt_if mbedtls mbedtls-devel openssl-devel) lzo-devel pam-devel
|
|
$(vopt_if pkcs11 pkcs11-helper-devel) cmocka-devel"
|
|
short_desc="Easy-to-use, robust, and highly configurable VPN"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="GPL-2.0-only"
|
|
homepage="https://www.openvpn.net"
|
|
distfiles="http://build.openvpn.net/downloads/releases/${pkgname}-${version}.tar.xz"
|
|
checksum=029a426e44d656cb4e1189319c95fe6fc9864247724f5599d99df9c4c3478fbd
|
|
|
|
build_options="mbedtls pkcs11"
|
|
build_options_default="pkcs11"
|
|
desc_option_mbedtls="Build with mbedtls support"
|
|
desc_option_pkcs11="Enable support for PKCS#11"
|
|
vopt_conflict mbedtls pkcs11
|
|
|
|
post_install() {
|
|
vmkdir usr/share/examples/${pkgname}
|
|
cp -r sample/sample-config-files/* ${DESTDIR}/usr/share/examples/${pkgname}
|
|
|
|
rm -rf ${DESTDIR}/usr/include
|
|
}
|