mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Add unbuilt updated pip packages to updates-2025-01-27-00-18 * Add built packages for linux/386 to updates-2025-01-27-00-18 * Add built packages for linux/amd64 to updates-2025-01-27-00-18 * Add built packages for linux/arm/v7 to updates-2025-01-27-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>
25 lines
758 B
Ruby
25 lines
758 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_meson < Pip
|
|
description 'Meson is an open source build system meant to be both extremely fast and user friendly.'
|
|
homepage 'https://mesonbuild.com/'
|
|
version "1.7.0-#{CREW_PY_VER}"
|
|
license 'Apache-2.0'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'b01df4adb5cac91939a21d08aa7cd7f15018f3bf87df4c8e8435653656dbd6cb',
|
|
armv7l: 'b01df4adb5cac91939a21d08aa7cd7f15018f3bf87df4c8e8435653656dbd6cb',
|
|
i686: '7cf2ee933cf7b8727a304ec41bff3a4cff46ba1c6c9eea7cd0769f8a02a925b2',
|
|
x86_64: 'd70caf2ec6cc021167009ccf6f20c2b6da68b0537417538c0da70a3fccbabeae'
|
|
})
|
|
|
|
depends_on 'ninja'
|
|
depends_on 'samurai'
|
|
depends_on 'python3'
|
|
|
|
no_source_build
|
|
end
|