mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
17 lines
413 B
Ruby
17 lines
413 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
|