mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 07:28:01 -05:00
* Add unbuilt iperf3 to updater-iperf3-3.19.1 * updater-iperf3-3.19.1: Build Run on linux/arm/v7. * updater-iperf3-3.19.1: Build Run on linux/amd64. * updater-iperf3-3.19.1: Package File Update Run on linux/amd64 container. --------- Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
22 lines
701 B
Ruby
22 lines
701 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Iperf3 < Autotools
|
|
description 'iPerf3 is a tool for active measurements of the maximum achievable bandwidth on IP networks.'
|
|
homepage 'https://iperf.fr'
|
|
version '3.19.1'
|
|
license 'BSD-3'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://github.com/esnet/iperf.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '4a0da34022f0e393734ab267995399f505186cafff157a5873475f370fe98316',
|
|
armv7l: '4a0da34022f0e393734ab267995399f505186cafff157a5873475f370fe98316',
|
|
x86_64: 'bea966ad5a7b61eb1650f9ae975cbb45aded37e4a641d12b538d832294223c1f'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'openssl' # R
|
|
end
|