mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Rename IgnoredPatterns to AllowedPatterns. * Exclude docopt.rb (not our code) from Rubocop * Disable Style/RedundantReturn * Disable Style/MutableConstant * Disable Style/NumericLiterals * Set Layout/IndentationStyle to spaces * Temporarily disable various cops. * Add Rubocop CI via Octocop * Lint tree with rubocop -A -c .rubocop.yml Co-authored-by: Satadru Pramanik <satadru@gmail.com>
15 lines
328 B
Ruby
15 lines
328 B
Ruby
require 'package'
|
|
|
|
class Gst_plugins_base < Package
|
|
description 'An essential, exemplary set of elements for GStreamer'
|
|
homepage 'https://gstreamer.freedesktop.org/modules/gst-plugins-base.html'
|
|
@_ver = '1.20.0'
|
|
version @_ver
|
|
license 'GPL-2+ and LGPL-2+'
|
|
compatibility 'all'
|
|
|
|
is_fake
|
|
|
|
depends_on 'gstreamer'
|
|
end
|