mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
* Adjust sed logic and update i686 hashes. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/amd64 to sed * Add built packages for linux/arm/v7 to sed --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com>
23 lines
682 B
Ruby
23 lines
682 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_markdown < Pip
|
|
description 'Markdown is a Python implementation of Markdown.'
|
|
homepage 'https://python-markdown.github.io/'
|
|
version "3.8.1-#{CREW_PY_VER}"
|
|
license 'BSD'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'ec635c7f7111c436ecccc2efc1237a6d19d6f56454090209ba284161ce83fb60',
|
|
armv7l: 'ec635c7f7111c436ecccc2efc1237a6d19d6f56454090209ba284161ce83fb60',
|
|
i686: '5cc30bb088907ac051fa188def8baebc10242dc550442de806b2458ef0f78e22',
|
|
x86_64: 'c70961c946d7bb34bef8eda1f9349c46fa970657ccbdc9522671551939708dcd'
|
|
})
|
|
|
|
depends_on 'python3'
|
|
|
|
no_source_build
|
|
end
|