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
728 B
Ruby
23 lines
728 B
Ruby
require 'buildsystems/python'
|
|
|
|
class Py3_dbfread < Python
|
|
description 'DBFread reads DBF Files with Python.'
|
|
homepage 'https://dbfread.readthedocs.io/'
|
|
@_ver = '2.0.7'
|
|
version "#{@_ver}-py3.12"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/olemb/dbfread.git'
|
|
git_hashtag @_ver
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '93cfff2250b28c5ebabbcb9f95197f2869e1769aa9e385a810a57c71a9945f55',
|
|
armv7l: '93cfff2250b28c5ebabbcb9f95197f2869e1769aa9e385a810a57c71a9945f55',
|
|
i686: 'bf5940ad975c45a48914ac09ba0677317555154bc153fda751ccce569c135ee8',
|
|
x86_64: '1a9ae024122fdc0df2e2973ff78e9ddc7c78d0cea43c9e29ffe48732ef5a5bb7'
|
|
})
|
|
|
|
depends_on 'python3' => :build
|
|
end
|