forked from ports/contrib
23 lines
473 B
Plaintext
23 lines
473 B
Plaintext
# Description: Text based document generation.
|
|
# URL: http://www.methods.co.nz/asciidoc/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: docbook-xsl python
|
|
|
|
name=asciidoc
|
|
version=8.6.10
|
|
release=1
|
|
source=(https://github.com/$name/$name/archive/$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
autoconf
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/usr/etc
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
rm $PKG/usr/etc/asciidoc/images/icons/README
|
|
}
|