sphinxcontrib

This commit is contained in:
saltedcoffii
2021-05-08 15:12:12 -04:00
parent 4ebacf361e
commit 16367ce226
6 changed files with 132 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
require 'package'
class Py3_sphinxcontrib_applehelp < Package
description 'sphinxcontrib-applehelp is a sphinx extension which outputs Apple help books.'
homepage 'https://www.sphinx-doc.org/'
@_ver = '1.0.2'
version @_ver
license 'BSD'
compatibility 'all'
source_url 'https://github.com/sphinx-doc/sphinxcontrib-applehelp.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