blob: 751bf0f19f79fd2933bd5580249af15c50a214fd [file] [log] [blame]
Patrick Williamsc0f7c042017-02-23 20:41:17 -06001SUMMARY = "Tool for creating HTML, PDF, EPUB, man pages"
2DESCRIPTION = "AsciiDoc is a text document format for writing short documents, \
3articles, books and UNIX man pages."
4
5HOMEPAGE = "http://asciidoc.org/"
6
7LICENSE = "GPLv2"
8LIC_FILES_CHKSUM = "file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b \
9 file://COPYRIGHT;md5=029ad5428ba5efa20176b396222d4069"
10
Brad Bishop19323692019-04-05 15:28:33 -040011SRC_URI = "git://github.com/asciidoc/asciidoc-py3;protocol=https \
12 file://auto-catalogs.patch"
13SRCREV = "618f6e6f6b558ed1e5f2588cd60a5a6b4f881ca0"
14PV .= "+py3-git${SRCPV}"
Patrick Williamsc0f7c042017-02-23 20:41:17 -060015
Brad Bishop19323692019-04-05 15:28:33 -040016DEPENDS = "libxml2-native libxslt-native docbook-xml-dtd4-native docbook-xsl-stylesheets-native"
Patrick Williamsc0f7c042017-02-23 20:41:17 -060017
Brad Bishop19323692019-04-05 15:28:33 -040018S = "${WORKDIR}/git"
19
20# Tell xmllint where to find the DocBook XML catalogue, because right now it
21# opens /etc/xml/catalog on the host. Depends on auto-catalogs.patch
22export SGML_CATALOG_FILES="file://${STAGING_ETCDIR_NATIVE}/xml/catalog"
23
24# Not using automake
Brad Bishopd7bf8c12018-02-25 22:55:05 -050025inherit autotools-brokensep
Patrick Williamsc0f7c042017-02-23 20:41:17 -060026CLEANBROKEN = "1"
Brad Bishop19323692019-04-05 15:28:33 -040027
28# target and nativesdk needs python3, but for native we can use the host.
29RDEPENDS_${PN} += "python3"
30RDEPENDS_remove_class-native = "python3"
31
32BBCLASSEXTEND = "native nativesdk"