mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Rebuild a2png * Rebuild bmon * Add built packages for linux/386 to rebuildtest1 * Add built packages for linux/amd64 to rebuildtest1 * Add built packages for linux/arm/v7 to rebuildtest1 * use ConvenienceFunctions.patch in a2png --------- Co-authored-by: Zopolis4 <Zopolis4@users.noreply.github.com>
27 lines
853 B
Ruby
27 lines
853 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Bmon < Autotools
|
|
description 'bmon is a commandline bandwidth monitor and rate estimator.'
|
|
homepage 'https://github.com/tgraf/bmon'
|
|
version '4.0'
|
|
license 'BSD-2 and MIT'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/tgraf/bmon.git'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'b92ba7a6d64f92f2b0ffd1dc1ee72ec28380d684d66923dad0f2e445c3f9aef6',
|
|
armv7l: 'b92ba7a6d64f92f2b0ffd1dc1ee72ec28380d684d66923dad0f2e445c3f9aef6',
|
|
i686: '0184a21e121f2b1a5e11f45088bb87f467d8008e64bc619cce7512fe6ffa3b20',
|
|
x86_64: '0190ef2ba6446bcaa28c9c0eae05e2569cedc1f2aacfafa96fc0f5d143b63414'
|
|
})
|
|
|
|
depends_on 'libconfuse'
|
|
depends_on 'libnl3'
|
|
depends_on 'ncurses'
|
|
depends_on 'glibc' # R
|
|
|
|
configure_options '--without-ncurses --with-ncursesw'
|
|
end
|