2021-06-14 21:51:49 +02:00
|
|
|
# Description: Docutils is an open-source text processing system for processing plaintext documentation into useful formats
|
|
|
|
# URL: https://docutils.sourceforge.io/
|
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
|
|
# Depends on: python3-setuptools
|
|
|
|
|
|
|
|
name=python3-docutils
|
2021-11-23 21:59:56 +01:00
|
|
|
version=0.18.1
|
2021-10-27 11:15:48 +02:00
|
|
|
release=1
|
2021-06-14 21:51:49 +02:00
|
|
|
source=(https://downloads.sourceforge.net/docutils/docutils-$version.tar.gz)
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd docutils-$version
|
|
|
|
/usr/bin/python3 setup.py build
|
|
|
|
/usr/bin/python3 setup.py install --prefix=/usr \
|
|
|
|
--root=$PKG \
|
|
|
|
--skip-build
|
2021-10-10 12:42:23 +02:00
|
|
|
|
|
|
|
find $PKG -iname "*README*" -delete
|
2021-06-14 21:51:49 +02:00
|
|
|
}
|