mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
26 lines
951 B
Bash
26 lines
951 B
Bash
# Maintainer: 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.0
|
|
pkgrel=1
|
|
pkgdesc="Text document format for short documents, articles, books and UNIX man pages"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.methods.co.nz/asciidoc/"
|
|
license=('GPL')
|
|
depends=('python' 'libxslt' 'docbook-xsl')
|
|
optdepends=('lilypond & imagemagick: music-filter'
|
|
'source-highlight: source-highlight-filter'
|
|
'dblatex or fop: pdf generation'
|
|
'docbook2odf: odf generation'
|
|
'lynx or w3m: text generation')
|
|
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
|
|
}
|
|
md5sums=('e29e5ca3f8d1a734ecb74a90780da1f3')
|