widic
LOW
maintainer friciwolf
0 votes
scanned 2026-09-07 13:14:41.036925
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: Máté Zoltán Farkas <mail@example.com>
2
3
pkgname=widic
4
pkgver=0f34739
5
pkgrel=1
6
pkgdesc="A Wiktionary viewer in your terminal."
7
arch=('any')
8
url="https://github.com/matezoltanfarkas/widic"
9
license=('GPL-3.0-only')
10
11
depends=(
12
'python'
13
'python-beautifulsoup4'
14
'python-requests'
15
'python-textual'
16
)
17
18
source=("git+https://github.com/matezoltanfarkas/widic.git#branch=main")
19
b2sums=('SKIP')
20
21
pkgver() {
22
cd "$srcdir/widic"
23
git describe --long --tags --always |
24
sed 's/\([^-]*-g\)/r\1/;s/-/./g'
25
}
26
27
package() {
28
cd "$srcdir/widic"
29
30
install -Dm644 main.py \
31
"$pkgdir/usr/share/widic/main.py"
32
33
install -Dm644 renderer.py \
34
"$pkgdir/usr/share/widic/renderer.py"
35
36
for file in renderers/*.py; do
37
install -Dm644 "$file" \
38
"$pkgdir/usr/share/widic/$file"
39
done
40
41
install -Dm644 LICENSE \
42
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
43
44
install -d "$pkgdir/usr/bin"
45
46
cat > "$pkgdir/usr/bin/widic" <<'EOF'
47
#!/bin/sh
48
exec python /usr/share/widic/main.py "$@"
49
EOF
50
51
chmod 755 "$pkgdir/usr/bin/widic"
52
}
53
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-07 13:14:41 | Low | 1 |