Package Details: mrkd 0.2.0-1

Git Clone URL: https://aur.archlinux.org/mrkd.git (read-only, click to copy)
Package Base: mrkd
Description: Write man pages using Markdown, and convert them to Roff or HTML.
Upstream URL: https://github.com/refi64/mrkd
Licenses: BSD
Submitter: refi.64
Maintainer: pizzaman
Last Packager: pizzaman
Votes: 1
Popularity: 0.000000
First Submitted: 2018-04-11 18:37 (UTC)
Last Updated: 2022-02-04 20:52 (UTC)

Latest Comments

pizzaman commented on 2022-02-04 20:53 (UTC)

@Spixmaster Updated. Thanks for the PKGBUILD.

Spixmaster commented on 2022-01-30 08:21 (UTC) (edited on 2022-01-31 08:26 (UTC) by Spixmaster)

Hello, Ryan. Could you update, please? The version 0.1.6 depends on "mistune_contrib" which does exist as a dependency. Additionally, "python-mistune" needs to be replaced with "python-mistune1".

Here is a working PKGBUILD but with missing checksum:

# Maintainer: Ryan Gonzalez <rymg19@gmail.com>

pkgname=('mrkd')
pkgver=0.2.0
pkgrel=1
pkgdesc='Write man pages using Markdown, and convert them to Roff or HTML.'
arch=('any')
url='https://github.com/refi64/mrkd'
license=('BSD')
makedepends=('python-setuptools')
depends=('python-pip' 'python-jinja' 'python-mistune1' 'python-plac' 'python-pygments')
source=(https://files.pythonhosted.org/packages/py3/${pkgname::1}/$pkgname/${pkgname/-/_}-$pkgver-py3-none-any.whl)
sha256sums=('SKIP')

package() {
  cd "$srcdir"
  PIP_CONFIG_FILE=/dev/null pip install --isolated --root="$pkgdir" --ignore-installed --no-deps *.whl
}