melody-watch-git
The package builds a small client component from the project's own Git repository; the source is transparent and the build is standard, with no remote code execution or untrusted binaries, though the SKIP'd checksum and low votes slightly increase supply-chain risk.
Triggered rules
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
llm_review
An AI model (qwen/qwen3-235b-a22b-2507) reviewed this and agrees it is LOW (confidence 95%): The package builds a small client component from the project's own Git repository; the source is transparent and the build is standard, with no remote code execution or untrusted binaries, though the SKIP'd checksum and low votes slightly increase supply-chain risk.
PKGBUILD
# Maintainer: Rasmus Steinke <rasi@xssn.at>
#
# melody-watch on its own: run where the music is -- a NAS that cannot run
# the engine -- it tells an engine elsewhere which files changed, so that
# engine re-reads just those instead of scanning over the network. It needs
# the protocol client only, so it builds in seconds without the engine.
pkgname=melody-watch-git
pkgver=r462.gd3c7d32
pkgrel=1
pkgdesc='Tells a Melody engine which music files changed on a NAS, so it need not scan'
arch=(x86_64 aarch64)
url='https://github.com/carnager/melody-next'
license=(GPL-3.0-only)
depends=(gcc-libs glibc libutf8proc)
makedepends=(cmake git ninja nlohmann-json)
provides=(melody-watch)
conflicts=(melody-watch)
install=melody-watch.install
source=("melody-next::git+https://github.com/carnager/melody-next.git")
sha256sums=('SKIP')
pkgver() {
cd melody-next
printf 'r%s.g%s' "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cd melody-next
cmake -B build -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr \
-DTRACKKNIFE_CLI_ONLY=ON -DTRACKKNIFE_BUILD_UI=OFF -DBUILD_TESTING=OFF \
-DTRACKKNIFE_BUILD_BENCHMARKS=OFF -DTRACKKNIFE_WARNINGS_AS_ERRORS=OFF
cmake --build build --target melody_watch
}
package() {
cd melody-next
DESTDIR="$pkgdir" cmake --install build --component watch
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-27 00:07:07 | Low | 2 |
| 2026-09-26 11:15:02 | Low | 2 |