mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-05 09:27:19 +02:00
48 lines
1.6 KiB
Text
48 lines
1.6 KiB
Text
# 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
|
||
"
|