25 lines
800 B
Bash
25 lines
800 B
Bash
# Template file for 'codeberg-cli'
|
|
pkgname=codeberg-cli
|
|
version=0.4.0
|
|
revision=1
|
|
build_style=cargo
|
|
build_helper=qemu
|
|
hostmakedepends="pkg-config"
|
|
makedepends="openssl-devel"
|
|
short_desc="CLI Tool for Codeberg similar to gh and glab"
|
|
maintainer="Marcin Puc <tranzystorek.io@protonmail.com>"
|
|
license="AGPL-3.0-or-later"
|
|
homepage="https://codeberg.org/RobWalt/codeberg-cli"
|
|
changelog="https://codeberg.org/RobWalt/codeberg-cli/raw/branch/main/CHANGELOG.md"
|
|
distfiles="https://codeberg.org/RobWalt/codeberg-cli/archive/v${version}.tar.gz"
|
|
checksum=1b3ddcdead5b8113c497b8f9abbcb3a30b5b41c7ae1f0a24f70a6278c3f7b2f7
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
|
|
for shell in bash fish zsh; do
|
|
vtargetrun ${DESTDIR}/usr/bin/berg completion ${shell} > berg.${shell}
|
|
vcompletion berg.${shell} ${shell} berg
|
|
done
|
|
}
|