23 lines
746 B
Bash
23 lines
746 B
Bash
# Template file for 'MultiMarkdown'
|
|
pkgname=MultiMarkdown
|
|
version=6.4.0
|
|
revision=1
|
|
wrksrc="$pkgname-6-$version"
|
|
build_style=cmake
|
|
hostmakedepends="perl"
|
|
makedepends="libcurl-devel"
|
|
short_desc="Superset of the Markdown syntax"
|
|
maintainer="Enno Boland <gottox@voidlinux.org>"
|
|
license="MIT"
|
|
homepage="http://fletcherpenney.net/multimarkdown/"
|
|
distfiles="https://github.com/fletcher/MultiMarkdown-6/archive/${version}.tar.gz"
|
|
checksum=fa9daa089bc0f8bc1f69fd7365778d59210b446ce7008d03b87fb572df8ff5d3
|
|
|
|
post_install() {
|
|
# TODO: markdown alternatives
|
|
mv ${DESTDIR}/usr/bin/markdown ${DESTDIR}/usr/bin/multimarkdown-markdown
|
|
# Avoid conflict with mtools
|
|
mv ${DESTDIR}/usr/bin/mmd ${DESTDIR}/usr/bin/multimarkdown-mmd
|
|
vlicense LICENSE.txt LICENSE
|
|
}
|