26 lines
747 B
Bash
26 lines
747 B
Bash
# Template file for 'bat'
|
|
pkgname=bat
|
|
version=0.5.0
|
|
revision=1
|
|
hostmakedepends="cargo cmake"
|
|
makedepends="libcurl-devel libssh2-devel oniguruma-devel"
|
|
short_desc="A cat(1) clone with syntax highlighting and Git integration"
|
|
maintainer="cr6git <quark6@protonmail.com>"
|
|
license="Apache-2.0, MIT"
|
|
homepage="https://github.com/sharkdp/bat"
|
|
distfiles="https://github.com/sharkdp/bat/archive/v${version}.tar.gz"
|
|
checksum=ae96e7397ece312fa4e074a340fc9438b4b3f69d541623db5cfd5749b2baa3b2
|
|
|
|
nocross="https://travis-ci.org/voidlinux/void-packages/jobs/374173136#L1025
|
|
https://travis-ci.org/voidlinux/void-packages/jobs/374173137#L1021"
|
|
|
|
do_build() {
|
|
cargo build --release
|
|
}
|
|
|
|
do_install() {
|
|
vbin target/release/bat
|
|
vlicense LICENSE-MIT
|
|
vdoc README.md
|
|
}
|
|
|