mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Add unbuilt ruby_rbs to updater-ruby_rbs-3.10.2-ruby4.0 * updater-ruby_rbs-3.10.2-ruby4.0: Package File Update Run on linux/386 container. * updater-ruby_rbs-3.10.2-ruby4.0: Package File Update Run on linux/amd64 container. * updater-ruby_rbs-3.10.2-ruby4.0: Package File Update Run on linux/arm/v7 container. --------- Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
28 lines
839 B
Ruby
28 lines
839 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.10.2-#{CREW_RUBY_VER}"
|
|
license 'BSD-2-Clause'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'gem'
|
|
|
|
binary_sha256({
|
|
aarch64: '8cc89a7db7a93f872c5e248d10e523496f73b727260a62bafa3e0dcb88293359',
|
|
armv7l: '8cc89a7db7a93f872c5e248d10e523496f73b727260a62bafa3e0dcb88293359',
|
|
i686: 'dd280655fec2284119a274c8e390b208ca002be7ce0733e50344975ec8400e9e',
|
|
x86_64: '925bd7e783b247701ab41c1cc3f513c3a1c738699586ef6bfd62ef2007d50412'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'ruby' # R
|
|
depends_on 'ruby_abbrev' # R
|
|
depends_on 'ruby_logger' # R
|
|
|
|
conflicts_ok
|
|
gem_compile_needed
|
|
no_source_build
|
|
end
|