summaryrefslogtreecommitdiffstats
path: root/abs/extra-testing/asciidoc/PKGBUILD
blob: 2a73a221dad9d7320ef054b7c5fa428cf99001c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us>
# Contributor: Chris Brannon <cmbrannon79@gmail.com>
# Contributor: Geoffroy Carrier <geoffroy@archlinux.org>
# Contributor: Dan McGee <dan@archlinux.org>
# Contributor: Jaroslaw Rosiek <philosoph@interia.pl>
# Contributor: Darwin Bautista <djclue917@gmail.com>

pkgname=asciidoc
pkgver=8.5.3
pkgrel=2
pkgdesc="Text document format for short documents, articles, books and UNIX man pages"
arch=('any')
url="http://www.methods.co.nz/asciidoc/"
license=('GPL')
depends=('python' 'libxslt' 'docbook-xsl')
optdepends=('lilypond: music-filter'
	    'imagemagick: music-filter (used in conjunction with lilypond)'
	    'source-highlight: source-highlight-filter'
	    'fop: pdf generation'
	    'lynx: text generation'
	    'w3m: text generation (alternative to lynx)')
source=(http://downloads.sourceforge.net/asciidoc/asciidoc-${pkgver}.tar.gz)

build() {
  cd ${srcdir}/${pkgname}-${pkgver}
  ./configure --prefix=/usr --sysconfdir=/etc || return 1
  make install DESTDIR="${pkgdir}" || return 1
  install -Dm644 asciidocapi.py ${pkgdir}/usr/lib/python2.6/site-packages/asciidocapi.py
}
md5sums=('7377872275c2a575151655b19ac6dd3e')