2010-12-16 01:51:01 +11:00
|
|
|
# Description: Text based document generation.
|
2021-02-01 11:01:30 +00:00
|
|
|
# URL: https://asciidoc.org/
|
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
|
2021-01-27 22:30:48 +00:00
|
|
|
version=9.0.5
|
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
|
|
|
|
}
|