mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
17 lines
349 B
Ruby
17 lines
349 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.7.1-#{CREW_RUBY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
|
|
depends_on 'ruby_ast' # R
|
|
depends_on 'ruby_racc' # R
|
|
|
|
conflicts_ok
|
|
no_compile_needed
|
|
end
|