20 lines
477 B
Plaintext
20 lines
477 B
Plaintext
# Description: Text based document generation.
|
|
# URL: https://asciidoc.org/
|
|
# Maintainer: John McQuah, jmcquah at disroot dot org
|
|
# Depends on: docbook-xsl python3-build python3-installer
|
|
|
|
name=asciidoc
|
|
version=10.2.0
|
|
release=1
|
|
source=(https://github.com/$name-py/$name-py/archive/$version/$name-py-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-py-$version
|
|
PYTHON='/usr/bin/python3'
|
|
autoconf
|
|
./configure --prefix=/usr --sysconfdir=/usr/etc
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|