soundux-pipewire
LOW
maintainer hedgeg0d
0 votes
scanned 2026-09-22 00:15:14.502938
Why flagged
The package builds from a tagged git source of the project's own 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 95%): The package builds from a tagged git source of the project's own repository, which is normal for AUR packages; the low severity is due to few votes and recent upload, not malicious content.
PKGBUILD
1
# Maintainer: hedgeg0d <werstak192@gmail.com>
2
pkgname=soundux-pipewire
3
pkgver=0.2.8
4
pkgrel=1
5
pkgdesc="A crossplatform soundboard that plays sounds into your microphone, with native PipeWire support"
6
arch=('x86_64')
7
url="https://github.com/hedgeg0d/Soundux-pipe"
8
license=('GPL-3.0-only')
9
depends=('gtk3' 'webkit2gtk-4.1' 'libappindicator' 'libsoup3' 'openssl' 'libx11' 'libxi' 'libxtst' 'glib2' 'cairo' 'gdk-pixbuf2' 'pango' 'harfbuzz' 'libice' 'libsm')
10
makedepends=('cmake' 'git')
11
optdepends=(
12
'pipewire: native PipeWire playback and moving applications into the soundboard'
13
'libpulse: fallback for systems without PipeWire'
14
'libwnck3: application icons in the output picker'
15
'yt-dlp: downloading sounds from links'
16
'ffmpeg: converting downloaded sounds'
17
)
18
provides=('soundux')
19
conflicts=('soundux' 'soundux-git')
20
source=("$pkgname::git+$url.git#tag=v$pkgver-pipewire")
21
sha256sums=('SKIP')
22
23
prepare() {
24
cd "$pkgname"
25
git submodule update --init --recursive
26
}
27
28
build() {
29
cmake -B build -S "$pkgname" \
30
-DCMAKE_BUILD_TYPE=Release \
31
-DCMAKE_INSTALL_PREFIX=/usr \
32
-DSYSTEM_INSTALL=ON
33
cmake --build build
34
}
35
36
package() {
37
DESTDIR="$pkgdir" cmake --install build
38
install -Dm644 "$pkgname/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
39
}
40
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-22 00:15:14 | Low | 2 |
| 2026-09-21 23:36:21 | Low | 2 |