mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
Error with desktop_file_utilities.rb: undefined method `descripton' for Desktop_file_utils:Class Error with orc.rb: undefined method `compatibilty' for gstreamer:Class Co-authored-by: chronos <noreply@github.com>
15 lines
357 B
Ruby
15 lines
357 B
Ruby
require 'package'
|
|
require_relative 'gstreamer'
|
|
|
|
class Orc < Package
|
|
description 'Optimized Inner Loop Runtime Compiler. Bundled with gstreamer.'
|
|
homepage 'https://gitlab.freedesktop.org/gstreamer/orc'
|
|
version Gstreamer.version.to_s
|
|
license Gstreamer.license.to_s
|
|
compatibility Gstreamer.compatibility.to_s
|
|
|
|
is_fake
|
|
|
|
depends_on 'gstreamer'
|
|
end
|