# Maintainer: Sintan Santorum pkgname="topgrade-bin" _pkgname="topgrade" pkgver=11.0.0 pkgrel=1 pkgdesc="Invoke the upgrade procedure of multiple package managers" arch=('x86_64' 'aarch64' 'armv7h') url='https://github.com/topgrade-rs/topgrade' license=('GPL3') provides=('topgrade') conflicts=('topgrade') source_x86_64=("topgrade_x86_64-$pkgver.tar.gz::$url/releases/download/v$pkgver/$_pkgname-v$pkgver-x86_64-unknown-linux-musl.tar.gz") source_aarch64=("topgrade_aarch64-$pkgver.tar.gz::$url/releases/download/v$pkgver/$_pkgname-v$pkgver-aarch64-unknown-linux-musl.tar.gz") source_armv7h=("topgrade_armv7h-$pkgver.tar.gz::$url/releases/download/v$pkgver/$_pkgname-v$pkgver-armv7-unknown-linux-gnueabihf.tar.gz") b2sums_x86_64=('fd3141a0ddb93f7fd4320fc8c55e2bfa0a1c83b59d2e5fe644a65e9aca18c712ec30a3585e8fa24e10da76b48e0ec05a05c487069defa934dce52f2652b00ee0') b2sums_aarch64=('c54345794ffb70d4a9ee396b53f15359a4868aabb606dab9b8d3422b8ba22284999ff57a25132b853b988d2a6523e7cbd6e6e1158f9e103a80378a8002dbd5f0') b2sums_armv7h=('2c06eb67cde6842f676f47bdc6d890ff9f182802b16f6b06754a56ff8d37005b05dd0d68e2a027c4a44ddb1b28144583fece947c097f3c07cbd0beb33917390a') 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/man/man8/topgrade.8" # completions # if $(command -v fish &>/dev/null); 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 # "Please add 'no_self_update = true' to your 'topgrade.toml' file to disable self updates, as it won't work with this installation" }