2010-12-16 01:51:01 +11:00
|
|
|
# Description: Text based document generation.
|
|
|
|
# URL: http://www.methods.co.nz/asciidoc/
|
2014-11-10 23:28:07 +11:00
|
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
2017-11-01 23:35:12 +11:00
|
|
|
# Depends on: docbook-xsl python
|
2010-12-16 01:51:01 +11:00
|
|
|
|
|
|
|
name=asciidoc
|
2018-01-31 22:09:41 +11:00
|
|
|
version=8.6.10
|
2010-12-16 01:51:01 +11:00
|
|
|
release=1
|
2018-01-31 22:09:41 +11:00
|
|
|
source=(https://github.com/$name/$name/archive/$version/$name-$version.tar.gz)
|
2010-12-16 01:51:01 +11:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
|
2018-01-31 22:09:41 +11:00
|
|
|
autoconf
|
2010-12-16 01:51:01 +11:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--sysconfdir=/usr/etc
|
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
rm $PKG/usr/etc/asciidoc/images/icons/README
|
|
|
|
}
|