muse-for-linux
LOW
maintainer itonia149
0 votes
scanned 2026-09-22 05:36:56.274624
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: itonia149 <itonia149@users.noreply.github.com>
2
pkgname=muse-for-linux
3
pkgver=0.1.0
4
pkgrel=1
5
pkgdesc="Unofficial Electron wrapper for Meta Muse Web"
6
arch=('any')
7
url="https://github.com/itonia149/muse-for-linux"
8
license=('MIT')
9
depends=('electron' 'hicolor-icon-theme')
10
source=("$pkgname-$pkgver.tar.gz::https://github.com/itonia149/muse-for-linux/archive/refs/tags/v$pkgver.tar.gz")
11
sha256sums=('e3a2a428a335c507d344eddc177d85f2be691285af966bb6c519684666322599')
12
13
package() {
14
cd "$srcdir/$pkgname-$pkgver"
15
16
# Application sources (no node_modules: electron comes from the system dep)
17
install -d "$pkgdir/usr/lib/$pkgname"
18
cp -r src assets "$pkgdir/usr/lib/$pkgname/"
19
install -Dm644 package.json "$pkgdir/usr/lib/$pkgname/package.json"
20
21
# Launcher script running the app with system electron
22
install -d "$pkgdir/usr/bin"
23
cat > "$pkgdir/usr/bin/$pkgname" <<EOF
24
#!/bin/sh
25
exec electron /usr/lib/$pkgname "\$@"
26
EOF
27
chmod 755 "$pkgdir/usr/bin/$pkgname"
28
29
# Desktop entry (deliberately no MimeType= handler: not replacing the user's browser)
30
install -Dm644 packaging/$pkgname.desktop \
31
"$pkgdir/usr/share/applications/$pkgname.desktop"
32
33
# Icons into hicolor
34
for size in 16 32 48 64 128 256 512; do
35
install -Dm644 "assets/icons/$pkgname-$size.png" \
36
"$pkgdir/usr/share/icons/hicolor/${size}x${size}/apps/$pkgname.png"
37
done
38
install -Dm644 assets/$pkgname.svg \
39
"$pkgdir/usr/share/icons/hicolor/scalable/apps/$pkgname.svg"
40
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
41
}
42
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-22 05:36:56 | Low | 1 |