mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-14 01:48:03 -05:00
* Add unbuilt updated pip packages to updates-2025-04-01-00-23 * Add unbuilt updated ruby gem packages to updates-2025-04-01-00-23 * Add built packages for linux/386 to updates-2025-04-01-00-23 * Add built packages for linux/amd64 to updates-2025-04-01-00-23 * Add built packages for linux/arm/v7 to updates-2025-04-01-00-23 --------- 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>
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.2-#{CREW_RUBY_VER}"
|
|
license 'BSD-2-Clause'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'gem'
|
|
|
|
binary_sha256({
|
|
aarch64: 'f92e7452ca9c62a1605122430c4e184f77116ee578f8f8935273c3dea8e29443',
|
|
armv7l: 'f92e7452ca9c62a1605122430c4e184f77116ee578f8f8935273c3dea8e29443',
|
|
i686: '521335d11676f3d80bcd2b03fbcae9582fd4b7fe3ea2e778cd9348692ede97ac',
|
|
x86_64: '32f916f11c5fa28e51d0089466a159b64df185db1cdceb96df6197081ed29b14'
|
|
})
|
|
|
|
depends_on 'ruby_abbrev' # R
|
|
depends_on 'ruby_logger' # R
|
|
|
|
conflicts_ok
|
|
gem_compile_needed
|
|
no_source_build
|
|
end
|