26 lines
552 B
Bash
26 lines
552 B
Bash
# Template file for 'just'
|
|
pkgname=just
|
|
version=0.3.9
|
|
revision=1
|
|
hostmakedepends="cargo"
|
|
short_desc="Just a command runner"
|
|
maintainer="Wilson Birney <wpb@360scada.com>"
|
|
license="CC0 1.0 Universal"
|
|
homepage="https://github.com/casey/just"
|
|
distfiles="https://github.com/casey/just/archive/v${version}.tar.gz"
|
|
checksum=2f729e38853e42701eca5dda24bdfe453366c1395a21f0009047a1e4caf061a8
|
|
nocross=yes
|
|
|
|
do_build() {
|
|
cargo build --release ${makejobs}
|
|
}
|
|
|
|
do_check() {
|
|
cargo check --release
|
|
}
|
|
|
|
do_install() {
|
|
vbin target/release/${pkgname}
|
|
vlicense LICENSE
|
|
}
|