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-04-21-00-21 * Add unbuilt updated ruby gem packages to updates-2025-04-21-00-21 * Revert py3_ldapdomaindump Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to updates-2025-04-21-00-21 * add arm builds for py3_pillow Signed-off-by: Satadru Pramanik <satadru@gmail.com> * add builds and rust rebuild Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> * add more binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@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.2-#{CREW_PY_VER}"
|
|
license 'Apache-2.0'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '5aad16926c807ee221b366f4b7d1376214ba9dde0f4c619240ceb48f54c94048',
|
|
armv7l: '5aad16926c807ee221b366f4b7d1376214ba9dde0f4c619240ceb48f54c94048',
|
|
i686: 'bb8f7761b2c4e4092016a140864e6a5527b5604ac175ea22ae41dfda03bbe4bc',
|
|
x86_64: '68fa5dc3b7afaa11de4604fcc15c4bf8b5fcea93122f7b2322949c10f5cc579c'
|
|
})
|
|
|
|
depends_on 'ninja'
|
|
depends_on 'samurai'
|
|
depends_on 'python3'
|
|
|
|
no_source_build
|
|
end
|