grut-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=grut
5
_appname=${_gitname}
6
pkgname=${_appname}-bin
7
pkgdesc="A terminal file explorer with full Git and GitHub integration, AI chat, and reactive panels that stay in sync as you navigate"
8
9
pkgver=0.8.0
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=('5212fea038b874798b9d0e9279c8150d12be160ebd3eeb0d0d2ee8ecc74f3b89')
32
sha256sums_aarch64=('ce44cb38d755c42f4145df6f86cf5c35566b25cbbf18affbe115fe073e8e1800')
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 |
| 2026-09-23 00:28:13 | Clean | 2 |
| 2026-09-22 23:39:22 | Low | 1 |