Automatically generate a compliant table of contents for a markdown file to improve document readability
https://docs.franco.net.eu.org/md-toc/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
749 B
27 lines
749 B
# Maintainer: Franco Masotti <franco dot masotti at live dot com> |
|
# Contributor: Franco Masotti <franco dot masotti at live dot com> |
|
pkgname=python-md_toc |
|
pkgver=3.0.0 |
|
pkgrel=1 |
|
pkgdesc="Automatically generate a compliant table of contents for a markdown file to improve document readability" |
|
arch=('any') |
|
url="https://github.com/frnmst/md-toc" |
|
license=('GPL3') |
|
depends=('python' |
|
'python-fpyutils' |
|
'python-setuptools') |
|
options=(!emptydirs) |
|
source=("${pkgname}.tar.gz::https://github.com/frnmst/md-toc/archive/${pkgver}.tar.gz") |
|
sha256sums=('SKIP') |
|
|
|
check() { |
|
cd "${srcdir}"/md-toc-"${pkgver}" |
|
python setup.py test |
|
} |
|
|
|
package() { |
|
cd "${srcdir}"/md-toc-"${pkgver}" |
|
python setup.py install --root="${pkgdir}/" --optimize=1 |
|
} |
|
|
|
|
|
|