mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
16 lines
470 B
Ruby
16 lines
470 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_docutils < Pip
|
|
description 'Docutils is an open-source text processing system for processing plaintext documentation into useful formats, such as HTML, LaTeX, man-pages, open-document or XML.'
|
|
homepage 'http://docutils.sourceforge.net/'
|
|
@_ver = '0.21.2'
|
|
version "#{@_ver}-py3.12"
|
|
license 'BSD-2, GPL-3 and public-domain'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
|
|
depends_on 'python3' => :build
|
|
|
|
no_compile_needed
|
|
end
|