diff options
Diffstat (limited to 'repo/core/asciidoc.xibuild')
-rw-r--r-- | repo/core/asciidoc.xibuild | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/repo/core/asciidoc.xibuild b/repo/core/asciidoc.xibuild new file mode 100644 index 0000000..814cc21 --- /dev/null +++ b/repo/core/asciidoc.xibuild @@ -0,0 +1,13 @@ +#!/bin/bash + +DEPS=(python libxslt docbook-xsl) + +SOURCE=https://github.com/asciidoc-py/asciidoc-py/releases/download/10.1.1/asciidoc-10.1.1.tar.gz +DESC="Text document format for short documents, articles, books and UNIX man pages" + + +build () { + make + make DESTDIR=$PKG_DEST install +} + |