blob: 4560ecf04ff96e3d4efdf29621638261755e6df9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Maintainer: Andrey Kolchenko <andrey@kolchenko.me>
pkgname=adguardvpn-cli-bin
pkgver=1.1.126
pkgrel=3
pkgdesc='Fast, flexible and reliable VPN solution for command-line enthusiasts.'
arch=('x86_64')
url='https://adguard-vpn.com/'
_file="adguardvpn-cli"
_full_name="${_file}-${pkgver}-linux-${arch}"
source=(
"https://github.com/AdguardTeam/AdGuardVPNCLI/releases/download/v${pkgver}-release/${_full_name}.tar.gz"
)
sha256sums=('d3d80f90d3f3289268eaab950c08a89d7fa0b86b2aa0104980b0220f69dcaf8a')
package() {
install -D "${_full_name}/${_file}" "${pkgdir}/usr/bin/${_file}"
}
|