cassis-git
LOW
maintainer trougnouf
0 votes
scanned 2026-09-14 00:27:57.913550
Why flagged
The package builds from a git source hosted on a personal domain, which is normal for AUR packages; the source is compiled from scratch using cargo, and no untrusted prebuilt binaries are executed or installed.
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 git source hosted on a personal domain, which is normal for AUR packages; the source is compiled from scratch using cargo, and no untrusted prebuilt binaries are executed or installed.
PKGBUILD
1
# Maintainer: Benoit Brummer (Trougnouf) <trougnouf@disroot.org>
2
pkgname=cassis-git
3
_pkgname=cassis
4
pkgver=41.b06a04c.0.1.1
5
pkgrel=1
6
pkgdesc="Fast and powerful music player with a Rust core and thin frontends (git version)"
7
arch=('x86_64')
8
url="https://git.disroot.org/trougnouf/cassis"
9
license=('GPL-3.0-or-later')
10
depends=(
11
'gcc-libs'
12
'glibc'
13
'opus' # opus playback (libopus, linked by the opus crate)
14
'libogg' # ogg container demuxer (libogg, linked by the ogg crate)
15
'alsa-lib' # audio output via cpal/rodio
16
)
17
makedepends=('cargo' 'pkgconf' 'git')
18
conflicts=("$_pkgname")
19
provides=("$_pkgname")
20
source=("$_pkgname::git+$url.git")
21
sha256sums=('SKIP')
22
options=('!lto' '!strip' '!debug')
23
24
pkgver() {
25
cd "$_pkgname"
26
local commit_hash=$(git rev-parse --short HEAD)
27
local commit_count=$(git rev-list --count HEAD)
28
local latest_tag=$(git describe --tags --abbrev=0 2>/dev/null || echo "rolling")
29
# Strip leading package-name prefixes (e.g. cassis-core-v0.1.1 -> 0.1.1)
30
# and sanitize characters that makepkg forbids in pkgver.
31
latest_tag="${latest_tag##*-v}"
32
latest_tag="${latest_tag#v}"
33
latest_tag="${latest_tag//[-\/]/.}"
34
echo "$commit_count.$commit_hash.$latest_tag"
35
}
36
37
build() {
38
cd "$_pkgname"
39
cargo build --release --locked
40
}
41
42
package() {
43
cd "$_pkgname"
44
45
install -Dm755 "target/release/cassis-tui" "$pkgdir/usr/bin/cassis-tui"
46
install -Dm755 "target/release/cassis-ctl" "$pkgdir/usr/bin/cassis-ctl"
47
48
install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
49
}
50
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-14 00:27:57 | Low | 2 |
| 2026-09-13 23:15:25 | Low | 2 |