waycord-git
LOW
maintainer PoDiax
0 votes
scanned 2026-09-15 19:20:17.099839
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 95%): 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: PoDiax <pd@pdx.ovh>
2
pkgname=waycord-git
3
_pkgname=waycord
4
pkgver=0.1.1.r0.g0f3bb29
5
pkgrel=1
6
pkgdesc="Lightweight Discord voice overlay for Linux"
7
arch=('x86_64')
8
url="https://github.com/podiax/waycord"
9
license=('MIT')
10
options=('!lto')
11
depends=('libx11' 'fontconfig' 'hicolor-icon-theme')
12
makedepends=('cargo' 'git')
13
provides=('waycord')
14
conflicts=('waycord')
15
source=("git+https://github.com/podiax/waycord.git")
16
sha256sums=('SKIP')
17
18
pkgver() {
19
cd "$_pkgname"
20
git describe --long --tags --abbrev=7 2>/dev/null | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g' ||
21
printf "0.1.0.r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
22
}
23
24
prepare() {
25
cd "$_pkgname"
26
export RUSTUP_TOOLCHAIN=stable
27
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
28
}
29
30
build() {
31
cd "$_pkgname"
32
export RUSTUP_TOOLCHAIN=stable
33
export CARGO_TARGET_DIR=target
34
cargo build --frozen --release --bin waycord
35
}
36
37
check() {
38
cd "$_pkgname"
39
export RUSTUP_TOOLCHAIN=stable
40
cargo test --frozen --bin waycord
41
}
42
43
package() {
44
cd "$_pkgname"
45
install -Dm755 "target/release/waycord" "$pkgdir/usr/bin/waycord"
46
install -Dm644 "assets/waycord.desktop" "$pkgdir/usr/share/applications/waycord.desktop"
47
install -Dm644 "assets/waycord.svg" "$pkgdir/usr/share/icons/hicolor/scalable/apps/waycord.svg"
48
install -Dm644 "assets/waycord.png" "$pkgdir/usr/share/icons/hicolor/256x256/apps/waycord.png"
49
install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
50
install -Dm644 "README.md" "$pkgdir/usr/share/doc/$pkgname/README.md"
51
}
52
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-15 19:20:17 | Low | 2 |