1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-15 12:15:22 +03:00
aports/community/onefetch/APKBUILD
2025-04-14 00:08:55 +00:00

78 lines
1.9 KiB
Text

# Contributor: Leo <thinkabit.ukim@gmail.com>
# Maintainer: omni <omni+alpine@hack.org>
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
"