aports/testing/texlab/APKBUILD
2024-04-26 15:28:07 +00:00

43 lines
1.1 KiB
Plaintext

# Maintainer: Dominika Liberda <ja@sdomi.pl>
# Contributor: Dominika Liberda <ja@sdomi.pl>
pkgname=texlab
pkgver=5.15.0
pkgrel=0
pkgdesc="Implementation of the Language Server Protocol for LaTeX"
url="https://github.com/latex-lsp/texlab"
# limited by rust/cargo
# armhf - fails to build
arch="x86_64 armv7 aarch64 x86 ppc64le"
license="GPL-3.0-or-later"
makedepends="cargo cargo-auditable"
source="https://github.com/latex-lsp/texlab/archive/refs/tags/v$pkgver/texlab-v$pkgver.tar.gz"
# tests OOM on 32-bit
# x86_64/ppc64le tests broken with some things in /tmp
case "$CARCH" in
x86|x86_64|ppc64le|armv7) options="!check" ;;
esac
export CARGO_PROFILE_RELEASE_PANIC="unwind"
prepare() {
default_prepare
cargo fetch --target="$CTARGET" --locked
}
build() {
cargo auditable build --release --frozen
}
check() {
cargo test --frozen
}
package() {
install -Dm755 target/release/texlab -t "$pkgdir"/usr/bin/
}
sha512sums="
c45af7395f7fd140f5b64d245a54c7c771692c6ed8ce5ae28bff6c3d013cf66a53c4d99e1bf525cfc2017e6e9b00ef26aa57db8a9d4c0815f564e6092bd38eb9 texlab-v5.15.0.tar.gz
"