void-packages/srcpkgs/racer/template
2017-10-31 10:40:02 +00:00

22 lines
556 B
Bash

# Template file for 'racer'
pkgname=racer
version=2.0.11
revision=1
hostmakedepends="rust cargo"
short_desc="Utility intended to provide Rust code completion for editors and IDEs"
maintainer="Michael Gehring <mg@ebfe.org>"
license="MIT"
homepage="https://github.com/phildawes/racer"
distfiles="https://github.com/phildawes/racer/archive/${version}.tar.gz"
checksum=29422d80da4f6a3ea63d37168a89bab8071fcefef148f223a1b5a34944511a7a
nocross=yes
do_build() {
cargo build --release
}
do_install() {
vbin target/release/racer
vlicense LICENSE-MIT LICENSE
}