contrib/rust-analyzer/Pkgfile

22 lines
752 B
Plaintext

# Description: Bringing a great IDE experience to the Rust programming language.
# URL: https://rust-analyzer.github.io/
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: rust
name=rust-analyzer
version=20220523
_version=${version::4}-${version:4:2}-${version:6:2}
release=1
source=(https://github.com/rust-analyzer/rust-analyzer/archive/$_version/$name-$version.tar.gz)
build() {
prt-get isinst sccache && export RUSTC_WRAPPER=/usr/bin/sccache
mkdir "$PKGMK_SOURCE_DIR/rust" || true
export CARGO_HOME="$PKGMK_SOURCE_DIR/rust"
#cargo update --manifest-path $name-$version/Cargo.toml
cargo build --release --locked --manifest-path $name-$_version/Cargo.toml
install -Dt $PKG/usr/bin $name-$_version/target/release/$name
}