neoarch
maintainer sanjayadanushka
· 0 votes
· scanned 2026-08-18 00:03:42.021799
LOW
View on AUR ↗
Why flagged
The package builds from a source tarball hosted on the project's own GitHub repository, which is normal for AUR packages; the skipped checksum and low votes/new upload are quality concerns but do not indicate active malice or remote code execution.
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.
LOW
AI review
llm_review
An AI model (qwen/qwen3-235b-a22b-2507) reviewed this and agrees it is LOW (confidence 95%): The package builds from a source tarball hosted on the project's own GitHub repository, which is normal for AUR packages; the skipped checksum and low votes/new upload are quality concerns but do not indicate active malice or remote code execution.
PKGBUILD
1
# Maintainer: Sanjaya Danushka <dsanjaya712@gmail.com>
2
pkgname=neoarch
3
pkgver=3.0.0beta
4
pkgrel=1
5
pkgdesc="NeoArch Package Manager for Arch Linux (stable release, use 'neoarch-git' for latest dev builds)"
6
arch=('any')
7
url="https://github.com/Sanjaya-Danushka/Neoarch"
8
license=('MIT')
9
depends=('python-pyqt6' 'python-requests' 'python-keyring' 'qt6-svg' 'flatpak' 'nodejs' 'npm')
10
provides=('neoarch')
11
conflicts=('neoarch-git')
12
install=neoarch.install
13
source=("$url/archive/refs/tags/v$pkgver.tar.gz")
14
sha256sums=('SKIP')
15
16
package() {
17
cd "$srcdir/Neoarch-$pkgver"
18
# Install to /opt/neoarch
19
install -d "$pkgdir/opt/neoarch"
20
cp -r . "$pkgdir/opt/neoarch/"
21
# Make scripts executable
22
chmod +x "$pkgdir/opt/neoarch/scripts/install_arch_deps.sh"
23
chmod +x "$pkgdir/opt/neoarch/bin/neoarch.sh"
24
chmod +x "$pkgdir/opt/neoarch/scripts/install_desktop_entry.sh"
25
# Fix entry point reference from aurora_home.py to -m neoarch
26
sed -i 's|aurora_home.py|-m neoarch|' "$pkgdir/opt/neoarch/bin/neoarch.sh"
27
# Install desktop file
28
install -Dm644 "$pkgdir/opt/neoarch/packaging/aurora.desktop" "$pkgdir/usr/share/applications/neoarch.desktop"
29
sed -i 's|/home/test/New Folder/Aurora|/opt/neoarch/Neoarch|g' "$pkgdir/usr/share/applications/neoarch.desktop"
30
sed -i 's|Icon=.*|Icon=neoarch|' "$pkgdir/usr/share/applications/neoarch.desktop"
31
# Install icon
32
install -Dm644 "$pkgdir/opt/neoarch/assets/icons/icon.png" "$pkgdir/usr/share/pixmaps/neoarch.png"
33
# Install license
34
install -Dm644 "$pkgdir/opt/neoarch/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
35
}
36
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-18 00:03:42 | LOW | 2 |
| 2026-08-17 19:37:23 | LOW | 2 |