34 lines
1.1 KiB
Bash
34 lines
1.1 KiB
Bash
# Template file for 'mdcat'
|
|
pkgname=mdcat
|
|
version=0.29.0
|
|
revision=1
|
|
build_style=cargo
|
|
hostmakedepends="pkg-config ruby-asciidoctor"
|
|
makedepends="openssl-devel"
|
|
depends="shared-mime-info"
|
|
checkdepends="shared-mime-info"
|
|
short_desc="Cat for markdown"
|
|
maintainer="cinerea0 <cinerea0@protonmail.com>"
|
|
license="MPL-2.0"
|
|
homepage="https://github.com/lunaryorn/mdcat/"
|
|
changelog="https://raw.githubusercontent.com/lunaryorn/mdcat/main/CHANGELOG.md"
|
|
distfiles="https://github.com/lunaryorn/mdcat/archive/refs/tags/mdcat-${version}.tar.gz"
|
|
checksum=a918d68bb07fbb00d7b733176175fb2bb0925e1393db072cd04d6927cb8e9fd6
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
x86_64*|i686*|arm*|aarch64*) ;;
|
|
*) broken="ftbfs in ring" ;;
|
|
esac
|
|
|
|
post_install() {
|
|
bash_completion=$(find ${wrksrc}/target -name mdcat.bash -print -quit)
|
|
vcompletion ${bash_completion} bash
|
|
zsh_completion=$(find ${wrksrc}/target -name _mdcat -print -quit)
|
|
vcompletion ${zsh_completion} zsh
|
|
fish_completion=$(find ${wrksrc}/target -name mdcat.fish -print -quit)
|
|
vcompletion ${fish_completion} fish
|
|
|
|
man_page=$(find ${wrksrc}/target -name mdcat.1 -print -quit)
|
|
vman ${man_page}
|
|
}
|