
* updated deps to get gtkplus to build * gtk-doc requires docbook-xml 4.3 * patch gtk-doc build to find xml catalogs * patch gtk-doc build to find xml catalogs * patch gtk-doc build to find xml catalogs * add new version, fix macOS build error * reorder docbook versions from newest to oldest Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
45 lines
1.7 KiB
Python
45 lines
1.7 KiB
Python
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack import *
|
|
|
|
|
|
class GtkDoc(AutotoolsPackage):
|
|
"""GtkDoc is a tool used to extract API documentation from
|
|
C-code like Doxygen, but handles documentation of GObject
|
|
(including signals and properties) that makes it very
|
|
suitable for GTK+ apps and libraries. It uses docbook for
|
|
intermediate files and can produce html by default and
|
|
pdf/man-pages with some extra work."""
|
|
|
|
homepage = "https://wiki.gnome.org/DocumentationProject/GtkDoc"
|
|
url = 'https://gitlab.gnome.org/GNOME/gtk-doc/-/archive/GTK_DOC_1_32/gtk-doc-GTK_DOC_1_32.tar.gz'
|
|
|
|
version('1.32', sha256='0890c1f00d4817279be51602e67c4805daf264092adc58f9c04338566e8225ba')
|
|
|
|
# Commented out until package dblatex has been created
|
|
# variant('pdf', default=False, description='Adds PDF support')
|
|
|
|
depends_on('autoconf', type='build')
|
|
depends_on('automake', type='build')
|
|
depends_on('libtool', type='build')
|
|
depends_on('m4', type='build')
|
|
depends_on('pkgconfig', type='build')
|
|
|
|
depends_on('python@3.2:', type=('build', 'run'))
|
|
depends_on('py-pygments', type=('build', 'run'))
|
|
depends_on('libxslt')
|
|
depends_on('libxml2')
|
|
depends_on('docbook-xsl@1.78.1')
|
|
depends_on('docbook-xml@4.3')
|
|
# depends_on('dblatex', when='+pdf')
|
|
|
|
patch('build.patch')
|
|
|
|
def url_for_version(self, version):
|
|
"""Handle gnome's version-based custom URLs."""
|
|
url = 'https://gitlab.gnome.org/GNOME/gtk-doc/-/archive/GTK_DOC_{0}/gtk-doc-GTK_DOC_{0}.tar.gz'
|
|
return url.format(version.underscored)
|