mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Add binary_compression value to each package * Remove binary_url values and arrays * Handle packages with empty binary_sha256 arrays (either missing binaries or not compiled by us)
23 lines
801 B
Ruby
23 lines
801 B
Ruby
require 'buildsystems/python'
|
|
|
|
class Py3_alabaster < Python
|
|
description 'Alabaster is a configurable sidebar-enabled Sphinx theme.'
|
|
homepage 'https://alabaster.readthedocs.io/'
|
|
@_ver = '0.7.13'
|
|
version "#{@_ver}-py3.12"
|
|
license 'BSD' # License is BSD-style, might be BSD-3?
|
|
compatibility 'all'
|
|
source_url 'https://github.com/bitprophet/alabaster.git'
|
|
git_hashtag @_ver
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'ab679526f7f0bad267d8f4dd03c3c2cab94bef7111cf8ecdd6b00db91c51e738',
|
|
armv7l: 'ab679526f7f0bad267d8f4dd03c3c2cab94bef7111cf8ecdd6b00db91c51e738',
|
|
i686: '0d22ad3826e6080ff23b2d6d469f9451322a16a0c10df923bbd1818ce737bc11',
|
|
x86_64: '6d9c2f7fe045eb5721d4e5e148dcafc6c0103153350bc150c778e3797cbdf171'
|
|
})
|
|
|
|
depends_on 'python3' => :build
|
|
end
|