2018-07-06 12:09:36 +02:00
|
|
|
# Template file for 'bat'
|
|
|
|
pkgname=bat
|
2018-08-29 07:57:37 +02:00
|
|
|
version=0.6.0
|
2018-07-06 12:09:36 +02:00
|
|
|
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"
|
2018-08-29 07:57:37 +02:00
|
|
|
checksum=3e182844c861cad5e214e504a81930bccf3c3916ee6821a73e932540b1c2de46
|
2018-07-06 12:09:36 +02:00
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|