# Contributor: Leo # Maintainer: omni pkgname=onefetch pkgver=2.24.0 pkgrel=0 pkgdesc="Git repository summary on your terminal" url="https://github.com/o2sh/onefetch" # s390x: build failure arch="all !s390x" license="MIT" makedepends=" cargo cargo-auditable zlib-dev zlib-ng-dev zstd-dev " checkdepends="bash" subpackages=" $pkgname-doc $pkgname-bash-completion $pkgname-fish-completion $pkgname-zsh-completion " source="$pkgname-$pkgver.tar.gz::https://crates.io/api/v1/crates/onefetch/$pkgver/download" options="net" case "$CARCH" in riscv64) options="$options !check" # didn't manage to disable the test with # cargo test --frozen -- --skip test_repo # maybe some other test is failing? ;; esac # Reduce binary size export CARGO_PROFILE_RELEASE_OPT_LEVEL="z" prepare() { default_prepare # Rust target triple. local target=$(rustc -vV | sed -n 's/host: //p') # Build against system-provided libzstd. mkdir -p .cargo cat >> .cargo/config.toml <<-EOF [target.$target] z-ng = { rustc-link-lib = ["z-ng"], rustc-cfg = ["zng"] } zstd = { rustc-link-lib = ["zstd"] } EOF cargo fetch --target="$CTARGET" --locked } build() { cargo auditable build --frozen --release for shellcomp in bash fish zsh; do ./target/release/onefetch --generate "$shellcomp" > onefetch."$shellcomp" done } check() { cargo test --frozen } package() { install -Dm0755 target/release/onefetch "$pkgdir"/usr/bin/onefetch install -Dm0644 docs/onefetch.1 "$pkgdir"/usr/share/man/man1/onefetch.1 install -Dm0644 onefetch.bash "$pkgdir"/usr/share/bash-completion/completions/onefetch install -Dm0644 onefetch.fish "$pkgdir"/usr/share/fish/vendor_completions.d/onefetch.fish install -Dm0644 onefetch.zsh "$pkgdir"/usr/share/zsh/site-functions/_onefetch } sha512sums=" b361d7a8890b9d89ddd8fa04635ba126323b8d040ab42b51d8855340395816e61f07ad744c5242127137302c94abd68140f97a633ff703b17ef975551519ae1e onefetch-2.24.0.tar.gz "