mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Add unbuilt py3_urwid to updater-py3_urwid-3.0.3 * updater-py3_urwid-3.0.3: Build Run on linux/arm/v7. * updater-py3_urwid-3.0.3: Build Run on linux/386. * updater-py3_urwid-3.0.3: Build Run on linux/amd64. * updater-py3_urwid-3.0.3: Package File Update Run on linux/386 container. --------- Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
24 lines
710 B
Ruby
24 lines
710 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_urwid < Pip
|
|
description 'Urwid is a full-featured console user interface library.'
|
|
homepage 'http://urwid.org/'
|
|
version "3.0.3-#{CREW_PY_VER}"
|
|
license 'LGPL-2.1'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '24efe9eec9d2ea22ed9e8dfdee0a2fef187f36f40b83d5bb7d7170c761d48ff2',
|
|
armv7l: '24efe9eec9d2ea22ed9e8dfdee0a2fef187f36f40b83d5bb7d7170c761d48ff2',
|
|
i686: 'ca31e4a8657dcf35b3a563c3e8c5a71b75c30d16ac37c7b54345d587a5a61a06',
|
|
x86_64: 'd7bb7963730ee69645822f888004e0cc2a26ff250686dea0abc0bf82f67084f5'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|