void-packages/srcpkgs/mdcat/template
2018-02-04 18:12:55 +01:00

25 lines
593 B
Bash

# Template file for 'mdcat'
pkgname=mdcat
version=0.6.0
revision=1
wrksrc=${pkgname}-${pkgname}-${version}
hostmakedepends="cargo cmake"
short_desc="Cat for markdown"
maintainer="Wilson Birney <wpb@360scada.com>"
license="Apache License 2.0"
homepage="https://github.com/lunaryorn/mdcat"
distfiles="https://github.com/lunaryorn/mdcat/archive/mdcat-${version}.tar.gz"
checksum=bcc05615f6aeea1a406a481502abb12add62ac12c7f140bfe4430cda78039bb3
nocross=yes
do_build() {
cargo build --release ${makejobs}
}
do_check() {
cargo check --release
}
do_install() {
vbin target/release/${pkgname}
}