2010-12-16 01:51:01 +11:00
|
|
|
# Description: Text based document generation.
|
2020-06-14 18:53:04 +10:00
|
|
|
# URL: https://www.methods.co.nz/asciidoc/
|
2014-11-10 23:28:07 +11:00
|
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
2020-01-04 12:50:18 +11:00
|
|
|
# Depends on: docbook-xsl python3
|
2010-12-16 01:51:01 +11:00
|
|
|
|
|
|
|
name=asciidoc
|
2020-10-19 22:06:15 +11:00
|
|
|
version=9.0.3
|
2010-12-16 01:51:01 +11:00
|
|
|
release=1
|
2020-01-04 12:50:18 +11:00
|
|
|
source=(https://github.com/asciidoc/$name-py3/archive/$version/$name-py3-$version.tar.gz)
|
2010-12-16 01:51:01 +11:00
|
|
|
|
|
|
|
build() {
|
2020-01-04 12:50:18 +11:00
|
|
|
cd $name-py3-$version
|
|
|
|
PYTHON='/usr/bin/python3'
|
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
|
|
|
|
}
|