lua51-mumble
maintainer Bkacjios
· 0 votes
· base
lua-mumble
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The package builds a Lua module from its own Git repository, which is a normal AUR practice; 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 95%): The package builds a Lua module from its own Git repository, which is a normal AUR practice; the low severity is due to few votes and recent upload, not malicious content.
PKGBUILD
1
# Maintainer: bkacjios < blackops7799 at gmail dot com >
2
3
pkgbase=lua-mumble
4
pkgname=(lua51-mumble lua52-mumble lua53-mumble lua54-mumble)
5
6
pkgver=1.0.0
7
pkgrel=1
8
_commit=8dd6b9c01917d6180d7e3b8e316a69de45121d9b
9
pkgdesc='A lua module to connect to a mumble server and interact with it '
10
arch=('x86_64')
11
url='https://github.com/bkacjios/lua-mumble'
12
license=('MIT')
13
depends=('libuv' 'openssl' 'libsndfile' 'opus')
14
makedepends=('cmake' 'pkgconf' 'protobuf-c' 'lua' 'lua51' 'lua52' 'lua53' 'git')
15
source=("git+https://github.com/bkacjios/lua-mumble.git#commit=${_commit}")
16
md5sums=('SKIP')
17
18
prepare() {
19
cd "$srcdir"
20
cp -a lua-mumble lua-mumble-51
21
cp -a lua-mumble lua-mumble-52
22
cp -a lua-mumble lua-mumble-53
23
}
24
25
build() {
26
ls "$srcdir"
27
28
cd "$srcdir/lua-mumble-51"
29
mkdir build && cd build
30
cmake -DLUAVER=lua51 --fresh
31
make
32
33
cd "$srcdir/lua-mumble-52"
34
mkdir build && cd build
35
cmake -DLUAVER=lua52 --fresh
36
make
37
38
cd "$srcdir/lua-mumble-53"
39
mkdir build && cd build
40
cmake -DLUAVER=lua53 --fresh
41
make
42
43
cd "$srcdir/lua-mumble"
44
mkdir build && cd build
45
cmake -DLUAVER=lua54 --fresh
46
make
47
}
48
49
package_lua51-mumble() {
50
cd lua-mumble-51
51
install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
52
cd build
53
install -D -m644 mumble.so "$pkgdir/usr/lib/lua/5.1/mumble.so"
54
}
55
56
package_lua52-mumble() {
57
cd lua-mumble-52
58
install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
59
cd build
60
install -D -m644 mumble.so "$pkgdir/usr/lib/lua/5.2/mumble.so"
61
}
62
63
package_lua53-mumble() {
64
cd lua-mumble-53
65
install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
66
cd build
67
install -D -m644 mumble.so "$pkgdir/usr/lib/lua/5.3/mumble.so"
68
}
69
70
package_lua54-mumble() {
71
cd lua-mumble
72
install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
73
cd build
74
install -D -m644 mumble.so "$pkgdir/usr/lib/lua/5.4/mumble.so"
75
}
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 00:17:23 | LOW | 2 |
| 2026-07-29 00:25:53 | LOW | 2 |
| 2026-07-28 17:39:33 | LOW | 2 |