blob: e3e888e775d808eeac18f49727ef3712a6c54eb7 (
plain)
1 # Description: A fast yet powerful Python Markdown parser with renderers and plugins
2 # URL: https://github.com/lepture/mistune
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: python3-setuptools
5
6 name=python3-mistune0
7 version=0.8.4
8 release=1
9 source=(https://github.com/lepture/mistune/archive/v$version/$name-$version.tar.gz)
10
11 build() {
12 cd mistune-$version
13 /usr/bin/python3 setup.py build
14 /usr/bin/python3 setup.py install --optimize=1 --root=$PKG
15 }
|