mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Add unbuilt updated pip packages to updates-2025-05-17-03-37 * Add unbuilt updated ruby gem packages to updates-2025-05-17-03-37 * Add built packages for linux/386 to updates-2025-05-17-03-37 * Add built packages for linux/x86_64 to updates-2025-05-17-03-37 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/arm/v7 to updates-2025-05-17-03-37 --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com>
26 lines
789 B
Ruby
26 lines
789 B
Ruby
require 'buildsystems/ruby'
|
|
|
|
class Ruby_rbs < RUBY
|
|
description 'RBS is the language for type signatures for Ruby and standard library definitions.'
|
|
homepage 'https://github.com/ruby/rbs'
|
|
version "3.9.4-#{CREW_RUBY_VER}"
|
|
license 'BSD-2-Clause'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'gem'
|
|
|
|
binary_sha256({
|
|
aarch64: '109f3ff484a30224ade3a6c2676d04b45dc59acb2b28d1278faf09e486392729',
|
|
armv7l: '109f3ff484a30224ade3a6c2676d04b45dc59acb2b28d1278faf09e486392729',
|
|
i686: '507c575a1493d4172702ec1521251e90994807c76fe7040f87220f9d6307d537',
|
|
x86_64: 'eb3ceeaadd3283b1fccff8306ca750608c609153350a0ca0d02963eb34e48678'
|
|
})
|
|
|
|
depends_on 'ruby_abbrev' # R
|
|
depends_on 'ruby_logger' # R
|
|
|
|
conflicts_ok
|
|
gem_compile_needed
|
|
no_source_build
|
|
end
|