PKGBUILDs/community/asciidoc/PKGBUILD

27 lines
951 B
Bash
Raw Normal View History

2009-10-10 02:15:33 +00:00
# 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')