mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
36 lines
1.1 KiB
Ruby
36 lines
1.1 KiB
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Openvpn < Autotools
|
|
description 'OpenVPN is an open source VPN daemon'
|
|
homepage 'https://openvpn.net/'
|
|
version '2.7.0'
|
|
license 'GPL-2'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://github.com/OpenVPN/openvpn.git'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '40b53f3efc0fa76468858ebd6c028b2d5da9448b82806310809ac45b031241fe',
|
|
armv7l: '40b53f3efc0fa76468858ebd6c028b2d5da9448b82806310809ac45b031241fe',
|
|
x86_64: '936a43fe1d03e8f3b448f1104da2e4dcc5e75324a9d3701dd83de759576ad111'
|
|
})
|
|
|
|
depends_on 'e2fsprogs' => :executable_only
|
|
depends_on 'glibc' # R
|
|
depends_on 'krb5' => :executable_only
|
|
depends_on 'libcap_ng' => :executable_only
|
|
depends_on 'libeconf' # R
|
|
depends_on 'libmbedtls' => :build
|
|
depends_on 'libnl3' => :executable_only
|
|
depends_on 'libtirpc' => :executable_only
|
|
depends_on 'linux_pam' # R
|
|
depends_on 'lz4' => :executable_only
|
|
depends_on 'lzo' => :executable_only
|
|
depends_on 'mold' => :build
|
|
depends_on 'openssl' => :executable_only
|
|
depends_on 'py3_docutils' => :build
|
|
|
|
run_tests
|
|
end
|