aports/testing/cargo-shuttle/APKBUILD
2025-03-13 17:10:15 +00:00

48 lines
1.6 KiB
Text
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Maintainer: Orhun Parmaksız <orhunparmaksiz@gmail.com>
pkgname=cargo-shuttle
pkgver=0.53.0
pkgrel=0
pkgdesc="Cargo command for the Shuttle platform"
url="https://github.com/shuttle-hq/shuttle"
license="Apache-2.0"
arch="all"
makedepends="cargo cargo-auditable"
subpackages="
$pkgname-doc
$pkgname-bash-completion
$pkgname-fish-completion
$pkgname-zsh-completion
"
source="https://github.com/shuttle-hq/shuttle/archive/v$pkgver/shuttle-$pkgver.tar.gz"
builddir="$srcdir/shuttle-$pkgver"
# tests require git/submodules to be initialized
options="!check"
prepare() {
default_prepare
cargo fetch --locked
}
build() {
cargo auditable build -p "$pkgname" --release --frozen
mkdir -p completions/
local compgen="target/release/$pkgname generate shell"
$compgen bash >"completions/$pkgname.bash"
$compgen fish >"completions/$pkgname.fish"
$compgen zsh >"completions/_$pkgname"
mkdir -p man/
"target/release/$pkgname" generate manpage > "man/$pkgname.1"
}
package() {
install -Dm755 "target/release/$pkgname" -t "$pkgdir/usr/bin/"
install -Dm644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
install -Dm644 "completions/$pkgname.bash" "$pkgdir/usr/share/bash-completion/completions/$pkgname"
install -Dm644 "completions/$pkgname.fish" -t "$pkgdir/usr/share/fish/vendor_completions.d"
install -Dm644 "completions/_$pkgname" -t "$pkgdir/usr/share/zsh/site-functions"
install -Dm 644 "man/$pkgname.1" -t "$pkgdir/usr/share/man/man1"
}
sha512sums="
6dc78d6f8599a0303a1b45f97c570545ef24bfb1b2222750cd007ca44d76fe9d1773b97935bdf4b93f1cff41c04563881668eafd86dec2da70f538ecce85138e shuttle-0.53.0.tar.gz
"