dirgo-bin
LOW
maintainer Dominiquini
1 votes
scanned 2026-08-25 05:25:49.966969
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=RudySource
4
_gitname=Dirgo
5
_appname=dgo
6
pkgname=${_gitname,,}-bin
7
pkgdesc="Fast, local-first directory navigation"
8
9
pkgver=0.3.1
10
pkgrel=1
11
_gitversion=v${pkgver}
12
13
arch=('x86_64')
14
_barch=('x86_64-unknown-linux-gnu')
15
16
_ghurl="https://github.com/${_gitauthor}/${_gitname}"
17
_ghurlraw="https://raw.githubusercontent.com/${_gitauthor}/${_gitname}/${_gitversion}"
18
url=${_ghurl}
19
20
license=('Apache-2.0' 'MIT')
21
22
provides=("${_appname}")
23
depends=('glibc' 'libgcc')
24
conflicts=("${pkgname%-bin}")
25
26
options=('!strip')
27
28
source_x86_64=("${_appname}-${arch[0]}-${pkgver}.tgz::${_ghurl}/releases/download/${_gitversion}/${_gitname}-${_gitversion}-${_barch[0]}.tar.gz")
29
sha256sums_x86_64=('cf9bb0a7545380a5e544c22f9d313193973f0c37eeaf538edee71a4acaa1dcd1')
30
31
32
case ${CARCH} in
33
${arch[0]})
34
_CARCH=${_barch[0]}
35
;;
36
esac
37
38
build() {
39
cd "${srcdir}/${_gitname,,}-${_gitversion}-${_CARCH}/" || exit
40
41
mkdir -p "./completions"
42
43
"./${_appname}" completions zsh > "./completions/${_appname}.zsh"
44
"./${_appname}" completions bash > "./completions/${_appname}.bash"
45
"./${_appname}" completions fish > "./completions/${_appname}.fish"
46
}
47
48
package() {
49
cd "${srcdir}/${_gitname,,}-${_gitversion}-${_CARCH}/" || exit
50
51
install -Dm755 "${_appname}" "${pkgdir}/usr/bin/${_appname}"
52
53
install -Dm644 "completions/${_appname}.zsh" "${pkgdir}/usr/share/zsh/site-functions/_${_appname}"
54
install -Dm644 "completions/${_appname}.bash" "${pkgdir}/usr/share/bash-completion/completions/${_appname}"
55
install -Dm644 "completions/${_appname}.fish" "${pkgdir}/usr/share/fish/vendor_completions.d/${_appname}.fish"
56
57
install -Dm644 "README.md" "${pkgdir}/usr/share/doc/${pkgname}/README.md"
58
59
install -Dm644 "LICENSE-MIT" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE-MIT"
60
install -Dm644 "LICENSE-APACHE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE-APACHE"
61
}
62
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-25 05:25:49 | Low | 1 |