widic

LOW
maintainer friciwolf 0 votes scanned 2026-09-07 13:14:41.036925
View on AUR
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
3pkgname=widic
4pkgver=0f34739
5pkgrel=1
6pkgdesc="A Wiktionary viewer in your terminal."
7arch=('any')
8url="https://github.com/matezoltanfarkas/widic"
9license=('GPL-3.0-only')
10
11depends=(
12 'python'
13 'python-beautifulsoup4'
14 'python-requests'
15 'python-textual'
16)
17
18source=("git+https://github.com/matezoltanfarkas/widic.git#branch=main")
19b2sums=('SKIP')
20
21pkgver() {
22 cd "$srcdir/widic"
23 git describe --long --tags --always |
24 sed 's/\([^-]*-g\)/r\1/;s/-/./g'
25}
26
27package() {
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
48exec python /usr/share/widic/main.py "$@"
49EOF
50
51 chmod 755 "$pkgdir/usr/bin/widic"
52}
53

Scan history

Scanned at (UTC)SeverityRules
2026-09-07 13:14:41 Low 1

Report a package

Reports go to the AURWatch maintainer (one person) and are read by hand. No login required.

0 / 4000
Your suggestion