mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Add Ruby Byebug gem Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Fix regression in crew install of no_source_build package binaries. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * lint Signed-off-by: Satadru Pramanik <satadru@gmail.com> * bump version Signed-off-by: Satadru Pramanik <satadru@gmail.com> * cleanup Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com>
22 lines
671 B
Ruby
22 lines
671 B
Ruby
require 'buildsystems/ruby'
|
|
|
|
class Ruby_byebug < RUBY
|
|
description 'Byebug is a Ruby debugger.'
|
|
homepage 'https://github.com/deivid-rodriguez/byebug'
|
|
version "11.1.3-#{CREW_RUBY_VER}"
|
|
license 'BSD-2-Clause'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'gem'
|
|
|
|
binary_sha256({
|
|
aarch64: 'a66196f0efe8c3d71684307b069a33483e56ec1d2217e4f33101fdbfef1f1f87',
|
|
armv7l: 'a66196f0efe8c3d71684307b069a33483e56ec1d2217e4f33101fdbfef1f1f87',
|
|
i686: '59217683304ae983a704955c2082222b5eeefc369b62804fc06cbc01d567cd39',
|
|
x86_64: 'c668fb6e1798a9ac0091fcaae08d47d09af02762204f839754619c385621b559'
|
|
})
|
|
|
|
conflicts_ok
|
|
gem_compile_needed
|
|
end
|