cmd-git
maintainer ChenPi11
· 1 votes
· scanned 2026-08-18 00:03:42.021799
LOW
View on AUR ↗
Why flagged
The package builds from a public Git repository with a plausible source URL, and the flagged low votes and recent upload are minor trust indicators, not evidence of malicious code; the build process is standard and the installed files are expected binaries from the source.
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.
LOW
AI review
llm_review
An AI model (qwen/qwen3-235b-a22b-2507) reviewed this and agrees it is LOW (confidence 90%): The package builds from a public Git repository with a plausible source URL, and the flagged low votes and recent upload are minor trust indicators, not evidence of malicious code; the build process is standard and the installed files are expected binaries from the source.
PKGBUILD
1
# Maintainer: ChenPi11 <wushengwuxi-msctinoulk@outlook.com>
2
_gitname=cmd
3
pkgname=cmd-git
4
pkgver=0.1.0
5
pkgrel=1
6
pkgdesc="A faithful reimplementation of the Windows cmd.exe command interpreter for Unix."
7
arch=('x86_64')
8
url="https://github.com/ChenPi11/cmd"
9
license=('GPLv3')
10
source=(
11
"git+https://github.com/ChenPi11/${_gitname}.git"
12
"LICENSE"
13
)
14
makedepends=('git' 'sh')
15
sha256sums=(
16
'SKIP'
17
'SKIP'
18
)
19
provides=('cmd')
20
conflicts=('cmd')
21
options=('!strip')
22
23
pkgver()
24
{
25
cd "$srcdir/$_gitname"
26
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
27
}
28
29
build() {
30
cd "${srcdir}/${_gitname}"
31
make -j$(nproc)
32
}
33
34
package() {
35
install -Dm0755 "${srcdir}/${_gitname}/cmd.exe" -t "${pkgdir}/usr/bin/"
36
install -Dm0755 "${srcdir}/${_gitname}/COMMAND.COM" -t "${pkgdir}/usr/bin/"
37
ln -s "/usr/bin/cmd.exe" "${pkgdir}/usr/bin/cmd"
38
install -Dm0644 LICENSE -t "${pkgdir}/usr/share/licenses/cmd/"
39
}
40
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-18 00:03:42 | LOW | 2 |
| 2026-08-17 00:18:29 | LOW | 2 |
| 2026-08-16 00:03:42 | LOW | 2 |
| 2026-08-15 05:30:14 | LOW | 2 |