mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 15:13:56 -05:00
* Add unbuilt updated pip packages to updates-2025-03-26-00-19 * Add unbuilt updated ruby gem packages to updates-2025-03-26-00-19 * Add built packages for linux/386 to updates-2025-03-26-00-19 * Add built packages for linux/amd64 to updates-2025-03-26-00-19 * Add built packages for linux/arm/v7 to updates-2025-03-26-00-19 --------- 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> Co-authored-by: Ed Reel <edreel@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 "12.0.0-#{CREW_RUBY_VER}"
|
|
license 'BSD-2-Clause'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'gem'
|
|
|
|
binary_sha256({
|
|
aarch64: 'fd35d010f2751d14adb1110ba5d84ee0748b9e8989106628f249b9d70960cdfe',
|
|
armv7l: 'fd35d010f2751d14adb1110ba5d84ee0748b9e8989106628f249b9d70960cdfe',
|
|
i686: 'b2ac8d2b9fd06e02767c88f46c84c87ca5a0a9428ee4b49202da2ac58c61364c',
|
|
x86_64: 'bd98f356e56180a28a9f26aed708a382a18754fb3d3f132df927d19c0dc531ba'
|
|
})
|
|
|
|
conflicts_ok
|
|
gem_compile_needed
|
|
end
|