astrosound-redux-git
maintainer sansation
· 0 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The npm install runs on the project's own source from a legitimate git repository, which is standard for building Electron apps; the undeclared dev dependency is a normal part of the build process and not a supply-chain risk.
Triggered rules
LOW
AI review downgraded a static finding
llm_review
The static rules flagged this MEDIUM, but an AI model (qwen/qwen3-235b-a22b-07-25) reviewed the full PKGBUILD and judged it LOW (confidence 95%): The npm install runs on the project's own source from a legitimate git repository, which is standard for building Electron apps; the undeclared dev dependency is a normal part of the build process and not a supply-chain risk.
1 higher static finding superseded - not the current verdict (shown for transparency)
MEDIUM
npm/yarn/pnpm install of an undeclared external package
npm_install_external
Runs `npm/yarn/pnpm install <package>` for a package not in source=(), pulling unpinned, unreviewed code at build time. Severity downgraded: the package declares/looks like a Node.js consumer, where build-time installs are expected.
-
PKGBUILD:32
npm install electron-packager --save-dev
PKGBUILD
1 offending line(s) highlighted
1
# Maintainer: sansation <sansation.git@gmail.com>
2
_pkgname=astrosound-redux
3
pkgname=astrosound-redux-git
4
pkgver=r49.a6c1853
5
pkgrel=1
6
pkgdesc="A modern music player made with Electron - git version"
7
arch=('i686' 'x86_64')
8
url='https://github.com/XNBlank/astrosound-redux'
9
license=('GPL')
10
makedepends=('git' 'npm' 'gendesk')
11
source=('git+https://github.com/XNBlank/astrosound-redux')
12
md5sums=('SKIP')
13
14
pkgver() {
15
cd "${srcdir}/${_pkgname}"
16
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
17
}
18
19
prepare() {
20
gendesk -n --pkgname "${_pkgname}" --pkgdesc "${pkgdesc}"
21
}
22
23
package() {
24
case $CARCH in
25
'i686') _arch='ia32';;
26
'x86_64') _arch='x64';;
27
esac
28
29
# Build package with electron
30
cd "${_pkgname}"
31
npm install
32
npm install electron-packager --save-dev
33
./node_modules/.bin/electron-packager . astrosound-redux --appname=astrosound-redux \
34
--version=1.2.6 --platform=linux --arch="${_arch}"
35
36
# Install files
37
install -d "${pkgdir}/opt/astrosound-redux"
38
cp -a "${srcdir}/${_pkgname}/${_pkgname}-linux-${_arch}/." "${pkgdir}/opt/${_pkgname}/"
39
40
# Install desktop entry
41
install -d "${pkgdir}/usr/share/applications"
42
install -Dm644 "${srcdir}/${_pkgname}.desktop" "${pkgdir}/usr/share/applications/"
43
44
# Symlink main binary
45
install -d "${pkgdir}/usr/bin"
46
ln -s "/opt/${_pkgname}/${_pkgname}" "${pkgdir}/usr/bin/${_pkgname}"
47
48
# Symlink icon
49
install -d "${pkgdir}/usr/share/pixmaps"
50
ln -s "/opt/${_pkgname}/resources/app/app.png" "${pkgdir}/usr/share/pixmaps/${_pkgname}.png"
51
52
# Install license file
53
install -Dm644 "${pkgdir}/opt/${_pkgname}/LICENSE" "${pkgdir}/usr/share/licenses/${_pkgname}/LICENSE"
54
install -Dm644 "${pkgdir}/opt/${_pkgname}/LICENSES.chromium.html" "${pkgdir}/usr/share/licenses/${_pkgname}/LICENSES.chromium.html"
55
rm "${pkgdir}/opt/${_pkgname}/LICENSE"
56
rm "${pkgdir}/opt/${_pkgname}/LICENSES.chromium.html"
57
}
58
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 00:07:28 | LOW | 2 |
| 2026-07-27 00:24:32 | LOW | 2 |
| 2026-07-26 00:07:32 | LOW | 2 |
| 2026-07-25 00:13:44 | LOW | 2 |
| 2026-07-24 00:02:28 | LOW | 2 |
| 2026-07-23 00:14:47 | LOW | 2 |
| 2026-07-22 00:29:32 | LOW | 2 |
| 2026-07-21 00:24:15 | LOW | 2 |
| 2026-07-20 00:19:49 | LOW | 2 |
| 2026-07-19 00:17:08 | LOW | 2 |
| 2026-07-18 00:14:48 | LOW | 2 |
| 2026-07-17 00:06:16 | LOW | 2 |
| 2026-07-16 00:05:41 | LOW | 2 |
| 2026-07-15 00:09:25 | LOW | 2 |