mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
15 lines
370 B
Ruby
15 lines
370 B
Ruby
require 'package'
|
|
require_relative 'harfbuzz'
|
|
|
|
class Ragel < Package
|
|
description 'Ragel compiles executable finite state machines from regular languages. Now bundled with harfbuzz.'
|
|
homepage 'https://www.colm.net/open-source/ragel/'
|
|
version Harfbuzz.version.to_s
|
|
license 'MIT' # Previously was GPL-2
|
|
compatibility 'all'
|
|
|
|
is_fake
|
|
|
|
depends_on 'harfbuzz'
|
|
end
|