mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* Add unbuilt py3_dool to updater-py3_dool-1.3.8 * updater-py3_dool-1.3.8: Build Run on linux/amd64. * updater-py3_dool-1.3.8: Build Run on linux/arm/v7. * updater-py3_dool-1.3.8: Build Run on linux/386. --------- Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
15 lines
369 B
Ruby
15 lines
369 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_dool < Pip
|
|
description 'Dool is a command line tool to monitor many aspects of your system: CPU, Memory, Network, Load Average, etc.'
|
|
homepage 'https://github.com/scottchiefbaker/dool'
|
|
version "1.3.8-#{CREW_PY_VER}"
|
|
license 'GPL3+'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
|
|
depends_on 'python3'
|
|
|
|
no_compile_needed
|
|
end
|