mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* move libpng inside harfbuzz, make sure harfbuzz installs before freetype * Make mold linker default for x86, make ragel an is_fake package * fix fetchtags, start gtk3 update * Add buildable gdk_pixbuf with patch * rev harfbuzz version * add rebuilds * add pixman builds * add binaries * suggested changes * add libva build * change CREW_LINKER logic * crew: Remove `CREW_*_PACKAGES` support * const.rb: Remove `CREW_*_PACKAGES` * suggested changes * suggested changes * fix linker env variable logic * Don't let icon cache update failure derail other installs * upload glew binaries * suggested changes + add updated glib * suggested changes Co-authored-by: supechicken <supechicken666@gmail.com>
14 lines
326 B
Ruby
14 lines
326 B
Ruby
require 'package'
|
|
|
|
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 '1.0'
|
|
license 'MIT' # Previously was GPL-2
|
|
compatibility 'all'
|
|
|
|
depends_on 'harfbuzz'
|
|
is_fake
|
|
|
|
end
|