63 lines
1.6 KiB
Plaintext

# Contributor: S.M Mukarram Nainar <theone@sm2n.ca>
# Maintainer: Jakub Panek <me@panekj.dev>
pkgname=rust-analyzer
pkgver=2023.11.13
_pkgver=${pkgver//./-}
pkgrel=0
pkgdesc="Rust compiler front-end for IDEs"
url="https://github.com/rust-lang/rust-analyzer"
# armhf, armv7, x86: some tests fail, not supported by upstream
# riscv64, s390x: blocked by cargo/rust
arch="aarch64 ppc64le x86_64"
license="MIT OR Apache-2.0"
depends="rust-src"
makedepends="cargo mimalloc2-dev cargo-auditable"
checkdepends="rustfmt"
subpackages="$pkgname-doc"
source="https://github.com/rust-lang/rust-analyzer/archive/$_pkgver/rust-analyzer-$pkgver.tar.gz"
builddir="$srcdir/$pkgname-$_pkgver"
# requires rustup toolchain to run rustup rustfmt for sourcegen
options="net !check"
# crashes otherwise
export CARGO_PROFILE_RELEASE_PANIC="unwind"
prepare() {
default_prepare
# rust target triple.
local target=$(rustc -vV | sed -n 's/host: //p')
# build against system-provided mimalloc.
# newline because file doesn't end in newline..
cat >> .cargo/config.toml <<-EOF
[target.$target]
mimalloc = { rustc-link-lib = ["mimalloc"] }
EOF
cargo fetch --target="$CTARGET" --locked
}
build() {
CFG_RELEASE="$pkgver" \
cargo auditable build \
--frozen \
--release \
--features="mimalloc"
}
check() {
cargo test --frozen
}
package() {
install -Dm755 target/release/rust-analyzer -t "$pkgdir"/usr/bin/
install -Dm644 docs/user/manual.adoc -t "$pkgdir"/usr/share/doc/$pkgname/
}
sha512sums="
37e60dd8125fe543f0d0de3a3dc443dad7a0c892c0c14e65bf40c3318f5231437628971189e198c1e69ed966cf2fd79ebb36c63817220bf577bc5b768bcd2828 rust-analyzer-2023.11.13.tar.gz
"