mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -05:00
* Add unbuilt ruby_parser to updater-ruby_parser-3.3.10.0 * updater-ruby_parser-3.3.10.0: Package File Update Run on linux/386 container. * updater-ruby_parser-3.3.10.0: Package File Update Run on linux/amd64 container. * updater-ruby_parser-3.3.10.0: Package File Update Run on linux/arm/v7 container. --------- Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
18 lines
383 B
Ruby
18 lines
383 B
Ruby
require 'buildsystems/ruby'
|
|
|
|
class Ruby_parser < RUBY
|
|
description 'A Ruby parser written in pure Ruby.'
|
|
homepage 'https://github.com/whitequark/parser'
|
|
version "3.3.10.0-#{CREW_RUBY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
|
|
depends_on 'ruby_ast' # R
|
|
depends_on 'ruby_kramdown' # R
|
|
depends_on 'ruby_racc' # R
|
|
|
|
conflicts_ok
|
|
no_compile_needed
|
|
end
|