void-packages/srcpkgs/fd/template

22 lines
533 B
Bash
Raw Normal View History

2017-09-16 13:31:27 +00:00
# Template file for 'fd'
pkgname=fd
2017-10-27 07:50:05 +00:00
version=5.0.0
2017-09-16 13:31:27 +00:00
revision=1
hostmakedepends="rust cargo"
short_desc="A simple, fast and user-friendly alternative to find"
maintainer="Jerry Tegno <jerrytegno@gmail.com>"
license="MIT"
homepage="https://github.com/sharkdp/fd"
distfiles="https://github.com/sharkdp/${pkgname}/archive/v${version}.tar.gz"
2017-10-27 07:50:05 +00:00
checksum=9788597334912d65e32c7d57ef7a0294cb8976dc52538c9048a77fbb8d12f755
2017-09-16 13:31:27 +00:00
nocross=yes
do_build() {
cargo build --release
}
do_install() {
vbin target/release/${pkgname}
2017-10-27 07:50:05 +00:00
vlicense LICENSE-MIT
2017-09-16 13:31:27 +00:00
}