fuoevolve-bin
The package installs a prebuilt binary from the project's official GitHub release page, which is a common and acceptable practice for AUR packages; the low severity reflects the use of a binary release but from a trusted project source with no evidence of malicious behavior.
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 installs a prebuilt binary from the project's official GitHub release page, which is a common and acceptable practice for AUR packages; the low severity reflects the use of a binary release but from a trusted project source with no evidence of malicious behavior.
PKGBUILD
pkgname=fuoevolve-bin
pkgver=1.6.2
pkgrel=1
pkgdesc='Open-source cross-platform music player based on FeelUOwn (prebuilt binary)'
arch=('x86_64')
url='https://feeluown.github.io/FuoEvolve/'
license=('GPL-3.0-only')
provides=("fuoevolve=${pkgver}")
conflicts=('fuoevolve')
depends=(
'gtk3'
'libx11'
'libxkbcommon'
'libsecret'
'mpv'
'webkit2gtk-4.1'
'alsa-lib'
'pipewire'
'libpulse'
)
makedepends=('libarchive')
options=('!strip')
_archive="FuoEvolve-${pkgver}-linux-x64.pkg.tar.zst"
source=("${_archive}::https://github.com/feeluown/FuoEvolve/releases/download/${pkgver}/${_archive}")
noextract=("${_archive}")
sha256sums=('ea3bdc16ebcc02fe876a12296ebaacd1e7d36493c3a4f57874a18c2ce9957777')
package() {
# The upstream release archive is a completed pacman package. Repackage only
# its installed files; makepkg must generate metadata for fuoevolve-bin itself.
if ! bsdtar -tf "${srcdir}/${_archive}" | grep -E '^(\./)?\.PKGINFO$' > /dev/null; then
echo 'Release asset is not a valid Arch package: missing .PKGINFO' >&2
return 1
fi
bsdtar \
--exclude='.PKGINFO' \
--exclude='.BUILDINFO' \
--exclude='.MTREE' \
--exclude='.INSTALL' \
--exclude='.CHANGELOG' \
-xf "${srcdir}/${_archive}" \
-C "${pkgdir}"
if [[ ! -d "${pkgdir}/usr" ]]; then
echo 'Release asset has no usr/ payload' >&2
return 1
fi
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-23 11:40:33 | Low | 2 |