mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 15:13: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>
16 lines
412 B
Ruby
16 lines
412 B
Ruby
require 'package'
|
|
|
|
class Docbook < Package
|
|
description 'DocBook is an XML vocabulary that lets you create documents in a presentation-neutral form that captures the logical structure of your content.'
|
|
homepage 'http://docbook.sourceforge.net/'
|
|
version '1.79.1-2'
|
|
license 'GPL-3+'
|
|
compatibility 'all'
|
|
|
|
is_fake
|
|
|
|
depends_on 'docbook_xml'
|
|
depends_on 'docbook_xsl'
|
|
depends_on 'docbook_xsl_nons'
|
|
end
|