summaryrefslogtreecommitdiff
path: root/libre/asciidoc
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2015-05-18 23:43:08 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2015-05-19 06:37:38 -0300
commit868da4da691a9aee89d16793c58e6cd91ebfd99e (patch)
tree3d9c30b2b53939805cf4a67b57f23d20db8e8d5e /libre/asciidoc
parent1db263705ff70c6b10504a45a858b6da6ac309d9 (diff)
asciidoc: add new package to [libre] -> https://labs.parabola.nu/issues/717
Diffstat (limited to 'libre/asciidoc')
-rw-r--r--libre/asciidoc/PKGBUILD64
1 files changed, 64 insertions, 0 deletions
diff --git a/libre/asciidoc/PKGBUILD b/libre/asciidoc/PKGBUILD
new file mode 100644
index 000000000..8ef3debd3
--- /dev/null
+++ b/libre/asciidoc/PKGBUILD
@@ -0,0 +1,64 @@
+# $Id: PKGBUILD 118968 2014-09-14 16:00:30Z bluewind $
+# Contributor (Arch): Chris Brannon <cmbrannon79@gmail.com>
+# Contributor (Arch): Geoffroy Carrier <geoffroy@archlinux.org>
+# Contributor (Arch): Dan McGee <dan@archlinux.org>
+# Contributor (Arch): Jaroslaw Rosiek <philosoph@interia.pl>
+# Contributor (Arch): Darwin Bautista <djclue917@gmail.com>
+# Contributor (Arch): Daniel J Griffiths <ghost1227@archlinux.us>
+# Maintainer (Arch): Florian Pritz <flo@xinu.at>
+# Maintainer: André Silva <emulatorman@parabola.nu>
+
+pkgname=asciidoc
+pkgver=8.6.9
+pkgrel=2.parabola1
+pkgdesc='Text document format for short documents, articles, books and UNIX man pages, without nonfree fop recommendation'
+arch=('any')
+url='http://www.methods.co.nz/asciidoc/'
+license=('GPL')
+depends=('python2' 'libxslt' 'docbook-xsl')
+optdepends=('lilypond: music-filter'
+ 'imagemagick: music-filter (used in conjunction with lilypond)'
+ 'source-highlight: source-highlight-filter'
+ 'dblatex: pdf generation'
+ 'lynx: text generation'
+ 'w3m: text generation (alternative to lynx)')
+source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz")
+md5sums=('c59018f105be8d022714b826b0be130a')
+
+prepare() {
+ cd ${pkgname}-${pkgver}
+
+ # python2 fix
+ for file in asciidocapi.py a2x.py asciidoc.py filters/music/music2png.py filters/latex/latex2png.py \
+ filters/code/code-filter.py filters/graphviz/graphviz2png.py; do
+ sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' $file
+ done
+ #sed -i -e 's_sys:python_sys:python2_g' -e 's_sys3:python_sys3:python2_g' xhtml11.conf
+ #sed -i 's_sys:python_sys:python2_g' xhtml11-quirks.conf
+ #sed -i -e 's/{python}/{python2}/g' \
+ #-e 's#{language@python:py:#{language@python2:py:#' \
+ #filters/source/source-highlight-filter.conf \
+ #html5.conf xhtml11.conf xhtml11-quirks.conf
+ #sed -i -e "s#'python'#'python2'#g" filters/code/code-filter.py
+}
+
+build() {
+ cd ${pkgname}-${pkgver}
+
+ ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc
+}
+
+package() {
+ cd ${pkgname}-${pkgver}
+
+ make install DESTDIR=${pkgdir}
+
+ install -Dm644 asciidocapi.py \
+ ${pkgdir}/usr/lib/python2.7/site-packages/asciidocapi.py
+
+ # fix FS#21579 - [asciidoc] 8.6.2-2 "asciidoc" table style doesn't work (mismatched python version)
+ #sed -i 's/python/python2/' \
+ #${pkgdir}/etc/asciidoc/asciidoc.conf
+}