mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 18:20:07 +00:00
18 lines
484 B
Plaintext
18 lines
484 B
Plaintext
# description : Set of tools for processing plaintext docs into formats such as HTML, XML, or LaTeX
|
|
# homepage : https://docutils.sourceforge.io/
|
|
# depends : python3-setuptools
|
|
|
|
name=python3-docutils
|
|
version=0.19
|
|
release=1
|
|
source="https://files.pythonhosted.org/packages/source/d/docutils/docutils-$version.tar.gz"
|
|
|
|
build() {
|
|
cd docutils-$version
|
|
python3 setup.py install --root=$PKG --optimize=1
|
|
for i in $PKG/usr/bin/*.py; do
|
|
i=${i##*/}
|
|
ln -s $i $PKG/usr/bin/${i%.*}
|
|
done
|
|
}
|