kaze
LOW
maintainer Godslayer
0 votes
scanned 2026-09-18 09:28:06.135653
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: Music Player Contributors <https://github.com/selfAnnihilator/kaze>
2
pkgname=kaze
3
pkgver=1.0.5
4
pkgrel=2
5
pkgdesc="A calm, intelligent local music player"
6
arch=('x86_64')
7
url="https://github.com/selfAnnihilator/kaze"
8
license=('MIT' 'Apache-2.0')
9
depends=(
10
'webkit2gtk-4.1'
11
'gtk3'
12
'libsoup3'
13
'alsa-lib'
14
'openssl'
15
'sqlite'
16
'hicolor-icon-theme'
17
)
18
makedepends=(
19
'cargo'
20
'nodejs'
21
'npm'
22
)
23
options=(!lto)
24
source=(
25
"$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz"
26
"kaze.desktop"
27
)
28
sha256sums=('165f4ab2eb98e31377c24a44c98587b21996443826ecf311fb8f5eae85823dbb'
29
'eaf39dc7d4a05cefeb1543018e5a2ae84148343e3b5a8de50ba365087d43dd0c')
30
31
build() {
32
cd "$pkgname-$pkgver"
33
npm ci
34
npm run build
35
cargo build --release --locked
36
}
37
38
package() {
39
cd "$pkgname-$pkgver"
40
local bin_dir="target/release"
41
if [ ! -f "$bin_dir/kaze" ]; then
42
bin_dir="src-tauri/target/release"
43
fi
44
45
install -Dm755 "$bin_dir/kaze" "$pkgdir/usr/bin/kaze"
46
install -Dm755 "$bin_dir/music-player-cli" "$pkgdir/usr/bin/music-player-cli"
47
48
install -Dm644 "$srcdir/kaze.desktop" "$pkgdir/usr/share/applications/kaze.desktop"
49
50
install -Dm644 src-tauri/icons/32x32.png "$pkgdir/usr/share/icons/hicolor/32x32/apps/kaze.png"
51
install -Dm644 src-tauri/icons/128x128.png "$pkgdir/usr/share/icons/hicolor/128x128/apps/kaze.png"
52
install -Dm644 src-tauri/icons/256x256.png "$pkgdir/usr/share/icons/hicolor/256x256/apps/kaze.png"
53
install -Dm644 src-tauri/icons/512x512.png "$pkgdir/usr/share/icons/hicolor/512x512/apps/kaze.png"
54
}
55
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-18 09:28:06 | Low | 1 |