2017-09-16 15:31:27 +02:00
|
|
|
# Template file for 'fd'
|
|
|
|
pkgname=fd
|
2018-03-26 22:09:51 +02:00
|
|
|
version=7.0.0
|
2017-12-10 16:25:43 +01:00
|
|
|
revision=1
|
2018-03-26 22:09:51 +02:00
|
|
|
hostmakedepends="cargo"
|
|
|
|
short_desc="Simple, fast and user-friendly alternative to find"
|
2017-09-16 15:31:27 +02:00
|
|
|
maintainer="Jerry Tegno <jerrytegno@gmail.com>"
|
2018-03-26 22:09:51 +02:00
|
|
|
license="Apache-2.0, MIT"
|
2017-09-16 15:31:27 +02:00
|
|
|
homepage="https://github.com/sharkdp/fd"
|
2018-03-26 22:09:51 +02:00
|
|
|
distfiles="https://github.com/sharkdp/fd/archive/v${version}.tar.gz"
|
|
|
|
checksum=93cc5a7c9199dc650f51a491e4ed4512262eeaeae5847722e6886763b41e2896
|
2017-09-16 15:31:27 +02:00
|
|
|
nocross=yes
|
|
|
|
|
|
|
|
do_build() {
|
|
|
|
cargo build --release
|
|
|
|
}
|
|
|
|
|
2017-11-16 15:41:10 +01:00
|
|
|
do_check() {
|
|
|
|
cargo test --release
|
|
|
|
}
|
|
|
|
|
2017-09-16 15:31:27 +02:00
|
|
|
do_install() {
|
2018-03-26 22:09:51 +02:00
|
|
|
vbin target/release/fd
|
2017-11-16 20:24:58 +01:00
|
|
|
vman doc/fd.1
|
2017-10-27 09:50:05 +02:00
|
|
|
vlicense LICENSE-MIT
|
2017-09-16 15:31:27 +02:00
|
|
|
}
|