18 lines
467 B
Plaintext
18 lines
467 B
Plaintext
# Description: Markdown to reStructuredText converter
|
|
# URL: https://github.com/miyakogi/m2r
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-docutils python3-mistune0
|
|
|
|
name=python3-m2r
|
|
version=0.3.1
|
|
release=1
|
|
source=(https://github.com/miyakogi/m2r/archive/v$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd m2r-$version
|
|
/usr/bin/python3 setup.py build
|
|
/usr/bin/python3 setup.py install --prefix=/usr \
|
|
--root=$PKG \
|
|
--skip-build
|
|
}
|