Files
chromebrew/packages/orc.rb
Ed Reel ec1db20058 Fix errors in fake packages (#8169)
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>
2023-04-10 15:27:25 -04:00

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