dispatch-bin
LOW
maintainer Dominiquini
1 votes
scanned 2026-09-23 01:39:21.955055
Why flagged
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
Triggered rules
Low
Few votes, recently uploaded
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
PKGBUILD
1
# Maintainer: Rafael Dominiquini <rafaeldominiquini at gmail dot com>
2
3
_gitauthor=jongio
4
_gitname=dispatch
5
_appname=${_gitname}
6
pkgname=${_appname}-bin
7
pkgdesc="A terminal UI for browsing and launching GitHub Copilot CLI sessions"
8
9
pkgver=0.16.2
10
pkgrel=1
11
_gitversion=v${pkgver}
12
13
arch=('x86_64' 'aarch64')
14
_barch=('linux_amd64' 'linux_arm64')
15
16
_ghurl="https://github.com/${_gitauthor}/${_gitname}"
17
_ghurlraw="https://raw.githubusercontent.com/${_gitauthor}/${_gitname}/${_gitversion}"
18
url=${_ghurl}
19
20
license=('MIT')
21
22
provides=("${_appname}")
23
conflicts=("${pkgname%-bin}")
24
25
depends=('git' 'github-cli')
26
27
options=('!strip')
28
29
source_x86_64=("${_appname}-${arch[0]}-${pkgver}.tgz::${_ghurl}/releases/download/${_gitversion}/${_appname}_${pkgver}_${_barch[0]}.tar.gz")
30
source_aarch64=("${_appname}-${arch[1]}-${pkgver}.tgz::${_ghurl}/releases/download/${_gitversion}/${_appname}_${pkgver}_${_barch[1]}.tar.gz")
31
sha256sums_x86_64=('c8f2fe63c04b9212dbf5ff9a5989b42035d2e4525bf2cefd1feba7ae6d68c175')
32
sha256sums_aarch64=('d4c974a07f42cc00df4875cd4ff2ef8c12db05e6538dd89bac448d9ec61d27e4')
33
34
35
prepare() {
36
cd "${srcdir}/" || exit
37
38
mkdir -p "./completions"
39
40
chmod +x "${_appname}"
41
42
"./${_appname}" completion zsh > "./completions/${_appname}.zsh"
43
"./${_appname}" completion bash > "./completions/${_appname}.bash"
44
"./${_appname}" completion fish > "./completions/${_appname}.fish"
45
}
46
47
package() {
48
cd "${srcdir}/" || exit
49
50
install -Dm755 "${_appname}" "${pkgdir}/usr/bin/${_appname}"
51
52
install -Dm644 "completions/${_appname}.zsh" "${pkgdir}/usr/share/zsh/site-functions/_${_appname}"
53
install -Dm644 "completions/${_appname}.bash" "${pkgdir}/usr/share/bash-completion/completions/${_appname}"
54
install -Dm644 "completions/${_appname}.fish" "${pkgdir}/usr/share/fish/vendor_completions.d/${_appname}.fish"
55
56
install -Dm644 "README.md" "${pkgdir}/usr/share/doc/${pkgname}/README.md"
57
58
install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
59
}
60
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-23 01:39:21 | Low | 1 |