mirror of
https://github.com/SinTan1729/lure-repo.git
synced 2025-04-18 08:47:41 -05:00
37 lines
1.9 KiB
Bash
37 lines
1.9 KiB
Bash
name="topgrade"
|
|
version=12.0.0
|
|
release=1
|
|
desc="Invoke the upgrade procedure of multiple package managers"
|
|
architectures=('amd64' 'aarch64' 'armv7')
|
|
maintainer='SinTan1729'
|
|
homepage='https://github.com/topgrade-rs/topgrade'
|
|
license=('GPL3')
|
|
provides=('topgrade')
|
|
conflicts=('topgrade')
|
|
sources_amd64=("${homepage}/releases/download/v${version}/${name}-v${version}-x86_64-unknown-linux-musl.tar.gz")
|
|
sources_aarch64=("${homepage}/releases/download/v${version}/${name}-v${version}-aarch64-unknown-linux-musl.tar.gz")
|
|
sources_armv7=("${homepage}/releases/download/v${version}/${name}-v${version}-armv7-unknown-linux-gnueabihf.tar.gz")
|
|
checksums_amd64=('54bd17b1b72d0e4f39159ea8f4db9d42f081c1c97dcfc91f679d2e2bd13963bd')
|
|
checksums_aarch64=('639897e504b7b114099c13538bfa1aff43215ac1fb205a5bc322dfeb02ee2ecf')
|
|
checksums_armv7=('9ee834778fa2727c533cd1731f0edff1a3c2c53de869544d8e6549daadc2bb44')
|
|
package() {
|
|
# install binary
|
|
install -Dm755 ./topgrade "$pkgdir/usr/local/bin/topgrade"
|
|
# manpage
|
|
./topgrade --gen-manpage | sed 's/.TH Topgrade 1/.TH Topgrade 8/' >topgrade.8
|
|
install -Dm644 ./topgrade.8 "$pkgdir/usr/local/share/man/man8/topgrade.8"
|
|
# completions
|
|
if $(command -v fish &>/dev/null) && [ $(echo $(fish --version | awk '{print $3}')$'\n'3.4.0 | sort -V | head -n1) != '3.4.0' ]; then
|
|
./topgrade --gen-completion fish >topgrade.fish
|
|
install -Dm644 ./topgrade.fish "${pkgdir}/usr/share/fish/completions/topgrade.fish"
|
|
fi
|
|
if $(command -v bash &>/dev/null); then
|
|
./topgrade --gen-completion bash >topgrade.bash
|
|
install -Dm644 ./topgrade.bash "${pkgdir}/usr/share/bash-completion/completions/topgrade"
|
|
fi
|
|
if $(command -v zsh &>/dev/null); then
|
|
./topgrade --gen-completion zsh >topgrade.zsh
|
|
install -Dm644 ./topgrade.zsh "${pkgdir}/usr/share/zsh/site-functions/_topgrade"
|
|
fi
|
|
echo "Please add 'no_self_update = true' to your 'topgrade.toml' file to disable self updates, as it won't work with this installation"
|
|
}
|