mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Add unbuilt updated pip packages to updates-2025-01-31-00-18 * Add built packages for linux/386 to updates-2025-01-31-00-18 * Add built packages for linux/amd64 to updates-2025-01-31-00-18 * Add built packages for linux/arm/v7 to updates-2025-01-31-00-18 --------- Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-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.4-#{CREW_PY_VER}"
|
|
license 'GPL3+'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
|
|
depends_on 'python3'
|
|
|
|
no_compile_needed
|
|
end
|