wordle-solver-git
maintainer emileross
· 0 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The package builds from the project's own Git repository, which is normal for AUR packages; the low severity is due to few votes and recent upload, not malicious content.
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 the project's own Git repository, which is normal for AUR packages; the low severity is due to few votes and recent upload, not malicious content.
PKGBUILD
1
# Maintainer: emile-ross <emileross@proton.me>
2
# Contributor: zerfithel <hazetlab@proton.me>
3
4
pkgname=wordle-solver-git
5
pkgver=1.2.8.96b7180
6
pkgrel=1
7
pkgdesc="A fast wordle solver written in C99"
8
arch=('x86_64')
9
url="https://github.com/emile-ross/wordle"
10
license=('GPL-2.0-only')
11
depends=()
12
makedepends=('make' 'gcc' 'git')
13
source=("git+https://github.com/emile-ross/wordle.git")
14
sha256sums=('SKIP')
15
provides=("wordle-solver")
16
conflicts=('wordle-solver')
17
18
pkgver() {
19
cd "${srcdir}/wordle"
20
git describe --tags --always \
21
| sed -E 's/^v//' \
22
| sed -E 's/^(.+)-([0-9]+)-g/\1.\2./' \
23
| sed -E 's/-/./g'
24
}
25
build() {
26
cd "${srcdir}/wordle" || exit 1
27
make wordle
28
}
29
30
package() {
31
cd "${srcdir}/wordle" || exit 1
32
install -Dm755 wordle "$pkgdir/usr/bin/wordle-solver"
33
34
install -d "$pkgdir/usr/share/wordle-solver/word_list_files"
35
install -m644 word_list_files/*.txt "$pkgdir/usr/share/wordle-solver/word_list_files/"
36
}
37
38
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-03 00:08:14 | LOW | 2 |
| 2026-08-02 00:16:08 | LOW | 2 |
| 2026-08-01 00:11:18 | LOW | 2 |
| 2026-07-31 00:14:10 | LOW | 2 |
| 2026-07-30 09:14:07 | LOW | 2 |