26 lines
814 B
Bash
26 lines
814 B
Bash
name="alr-bin"
|
|
version="0.0.17"
|
|
release="2"
|
|
desc="ALT Linux Repository - binary release"
|
|
homepage="https://gitea.plemya-x.ru/Plemya-x/ALR"
|
|
maintainer='Evgeniy Khramov <xpamych@yandex.ru>'
|
|
maintainer_ru='Евгений Храмов <xpamych@yandex.ru>'
|
|
architectures=('all')
|
|
license=('GPL-3.0-or-later')
|
|
provides=('alr')
|
|
conflicts=('alr' 'alr-git')
|
|
|
|
sources=("https://gitea.plemya-x.ru/Plemya-x/ALR/releases/download/v${version}/alr-${version}-linux-x86_64.tar.gz")
|
|
checksums=('1af629d138e4b09e16e9b44c5497dd102bde2fcded54bf5c4efafdc3fde0eada')
|
|
|
|
package() {
|
|
install-binary alr
|
|
install-completion bash alr < ./completion/alr
|
|
install-completion zsh alr < ./completion/_alr
|
|
}
|
|
|
|
files() {
|
|
echo ./usr/bin/alr
|
|
echo ./usr/share/bash-completion/completions/alr
|
|
echo ./usr/share/zsh/site-functions/_alr
|
|
} |