22 lines
547 B
Bash
22 lines
547 B
Bash
|
# Template file for 'xsv'
|
||
|
pkgname=xsv
|
||
|
version=0.12.2
|
||
|
revision=1
|
||
|
hostmakedepends="cargo rust"
|
||
|
short_desc="Fast CSV toolkit written in Rust"
|
||
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
||
|
license="Public Domain, MIT"
|
||
|
homepage="https://github.com/BurntSushi/xsv/"
|
||
|
distfiles="https://github.com/BurntSushi/${pkgname}/archive/${version}.tar.gz"
|
||
|
checksum=484e3d4a9fec0d4c8089a77cba3e122970113e2bf0277ab6a956bf12954bbca3
|
||
|
nocross=yes
|
||
|
|
||
|
do_build() {
|
||
|
cargo build --release
|
||
|
}
|
||
|
do_install() {
|
||
|
vbin target/release/xsv
|
||
|
vlicense LICENSE-MIT
|
||
|
vlicense UNLICENSE
|
||
|
}
|