mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 15:13:56 -05:00
* Add unbuilt ruby_rbs to updater-ruby_rbs-3.9.5 * updater-ruby_rbs-3.9.5: Package File Update Run on linux/386 container. * updater-ruby_rbs-3.9.5: Package File Update Run on linux/amd64 container. * updater-ruby_rbs-3.9.5: Package File Update Run on linux/arm/v7 container. --------- Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.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.5-#{CREW_RUBY_VER}"
|
|
license 'BSD-2-Clause'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'gem'
|
|
|
|
binary_sha256({
|
|
aarch64: '2bf0e552fbd0d9b9912a54f45df642de80536807a5e178ca3a6ca0345e82d64f',
|
|
armv7l: '2bf0e552fbd0d9b9912a54f45df642de80536807a5e178ca3a6ca0345e82d64f',
|
|
i686: '934602ef5635703fef1155cf1e1ef3f3680b4bef0555c53f399ce610e541794a',
|
|
x86_64: '7899294875e4bfe3e9f4bcd11b718525fca60bf03435acca63ed79279a5e6230'
|
|
})
|
|
|
|
depends_on 'ruby_abbrev' # R
|
|
depends_on 'ruby_logger' # R
|
|
|
|
conflicts_ok
|
|
gem_compile_needed
|
|
no_source_build
|
|
end
|