bob: use system openssl, install shell completions

This commit is contained in:
tranzystorekk
2026-03-13 19:10:38 +01:00
parent 3a395e9a8f
commit 77e7646d3b
+10 -1
View File
@@ -1,8 +1,12 @@
# Template file for 'bob'
pkgname=bob
version=4.1.6
revision=1
revision=2
build_style=cargo
build_helper="qemu"
configure_args="--no-default-features --features=native-tls"
hostmakedepends="pkg-config"
makedepends="openssl-devel"
short_desc="Version manager for neovim"
maintainer="Alex March <alex@hosaka.cc>"
license="MIT"
@@ -13,4 +17,9 @@ checksum=c74a6b3950e297b3b013ee7586a784af05c014b8c84b78f3730538df4e1d4775
post_install() {
vlicense LICENSE
for _shell in bash fish zsh; do
vtargetrun ${DESTDIR}/usr/bin/bob complete ${_shell} > bob.${_shell}
vcompletion bob.${_shell} ${_shell}
done
}