summaryrefslogtreecommitdiff
path: root/repo/devel/asciidoc.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-01-16 01:23:51 +0000
committerdavidovski <david@davidovski.xyz>2022-01-16 01:23:51 +0000
commitcb447620084a20be80d116c81c2e9ec110be7118 (patch)
tree9fc0d714abbb5c6326b60616a5fd27ec9f984895 /repo/devel/asciidoc.xibuild
parent153011e9129c6055ef21c48caf65a23e74a91418 (diff)
restructured repo system
Diffstat (limited to 'repo/devel/asciidoc.xibuild')
-rw-r--r--repo/devel/asciidoc.xibuild15
1 files changed, 15 insertions, 0 deletions
diff --git a/repo/devel/asciidoc.xibuild b/repo/devel/asciidoc.xibuild
new file mode 100644
index 0000000..47b51a0
--- /dev/null
+++ b/repo/devel/asciidoc.xibuild
@@ -0,0 +1,15 @@
+#!/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"
+
+
+
+package () {
+ pip install -t $PKG_DEST/usr/lib/python3.10/site-packages/ asciidoc
+ mkdir -pv $PKG_DEST/usr/bin
+ ln -s /usr/lib/python3.10/site-packages/bin/asciidoc $PKG_DEST/usr/bin/asciidoc
+ ln -s /usr/lib/python3.10/site-packages/bin/a2x $PKG_DEST/usr/bin/a2x
+}