mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 16:08:08 -05:00
23 lines
583 B
Ruby
23 lines
583 B
Ruby
require 'package'
|
|
|
|
class Py3_sphinxcontrib_devhelp < Package
|
|
description 'Sphinxcontrib-devhelp is a sphinx extension which outputs a Devhelp document.'
|
|
homepage 'https://www.sphinx-doc.org/'
|
|
@_ver = '1.0.2'
|
|
version @_ver
|
|
license 'BSD'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/sphinx-doc/sphinxcontrib-devhelp.git'
|
|
git_hashtag @_ver
|
|
|
|
depends_on 'py3_setuptools' => :build
|
|
|
|
def self.build
|
|
system "python3 setup.py build #{PY3_SETUP_BUILD_OPTIONS}"
|
|
end
|
|
|
|
def self.install
|
|
system "python3 setup.py install #{PY_SETUP_INSTALL_OPTIONS}"
|
|
end
|
|
end
|