blob: b2cde15397252856eb7d5059b33a3295ad105536 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Maintainer: FirstAirBender <noblechuk5 [at] web [dot] de>
pkgname=nordvpn-configs
pkgver=1.0.1
pkgrel=1
pkgdesc="openvpn config files for NordVPN"
arch=('any')
url='https://nordvpn.com/'
optdepends=(
'openvpn: Run the client configs with systemd and openvpn'
)
options=(
!strip
)
source=(
"$pkgname.zip::https://downloads.nordcdn.com/configs/archives/servers/ovpn.zip"
)
sha256sums=(
'SKIP'
)
package() {
mkdir --parents --mode=750 "${pkgdir}/etc/openvpn/nordvpn"
cp --archive **/ "${pkgdir}/etc/openvpn/nordvpn"
}
# https://support.nordvpn.com/Connectivity/Linux/1047409422/How-can-I-connect-to-NordVPN-using-Linux-Terminal.htm
# https://jlk.fjfi.cvut.cz/arch/manpages/man/PKGBUILD
|